1 關於 w3c 技術規格的制定和實踐
https://caniuse.com/
css3提供視覺效果
<!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>