<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>阴影</title>
<style type="text/css">
.redDiv{
width: 200px;
height: 200px;
background-color: red;
/*阴影
第一个值 X轴方向
第二个值 Y轴方向
第三个值 阴影模糊距离
颜色值 阴影颜色
*/
box-shadow: 10px 10px 10px 20px blue inset;
}
.text{
font-size: 50px;
color: white;
text-shadow: 0 0 5px blue,
0 0 10px blue,
0 0 15px blue,
0 0 20px #228DFF,
0 0 35px #228DFF,
0 0 40px #228DFF,
0 0 50px #228DFF,
0 0 75px #228DFF;
}
</style>
</head>
<body>
<div class="redDiv"></div>
<div class="text">caocaocaocoa</div>
</body>
</html>
网友评论