分内圆和外圆
- 外圆:由浅入深
- 内圆:由深入浅
原理
box-shadow:x y r color
x,y分别别是院系的偏移量,r表半径 ,color颜色,默认外圆
内圆家insert
box-shadow:inset x y r color
<style type="text/css">
.box{
width: 100px;
height: 100px;
box-shadow: 1px 1px 1px green;参数依次为水平方向 数值方向 模糊度 shadow颜色
}
</style>