3 回答
qq_非诚勿扰_3
TA贡献37条经验 获得超16个赞
如果div元素设置了圆角,那阴影也会是圆的
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.radius{
height:50px;
width:50px;
position:absolute;
top:-60px;
background-color:#ccc;
border:1px solid;
border-radius:25px;
box-shadow:100px 100px 5px #888888;
}
</style>
</head>
<body>
<div class="radius"></div>
</div>
</body>
</html>
- 3 回答
- 0 关注
- 4895 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消