CSS学习第四天(1)-圆角边框、盒子阴影、文字阴影
1 圆角边框
圆角使用方法:
2 盒子阴影
h-shadow:影子的水平距离
v-shadow:影子的垂直距离
blur:影子的虚度
spread:阴影的尺寸
color:阴影的颜色,一般使用rgba(0,0,0,0.3)(30%的黑色)
inset:内外阴影,默认外阴影
3 文字阴影
4 案例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 400px;
height: 200px;
background-color: pink;
margin: 100px auto;
}
.box:hover {
box-shadow: -5px 10px 30px 10px rgba(0, 0, 0, .3);
}
.wenzi {
width: 1000px;
height: 300px;
color: red;
font-size: 50px;
font-weight: 700;
text-shadow: 5px 5px 5px rgba(0, 0, 0, .3);
}
</style>
</head>
<body>
<div class="box"></div>
<div class="wenzi">我是要成为海贼王的男人!</div>
</body>
</html>
图示: