0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSS 3-1 快速入門 By 彭彭

Posted at
1 關於 w3c 技術規格的制定和實踐
https://caniuse.com/

WS000002.JPG
WS000003.JPG

css3提供視覺效果

WS000005.JPG

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
	<title>css3 快速入門</title>
    <style type="text/css">
	.box{
		width:100px;height:100px;background-color:pink;
		opacity:1;
		border-radius:50%;
		box-shadow:0px 0px 100px #000000;
		text-shadow:50px 70px 1px #000000;
	}
	</style>
</head>
<body>
    <div class="box">florence</div>
</body>
</html>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?