图片:
做出这种左边右边上边没有阴影效果(这个好处理)
而底边有阴影效果,但是底边的两边又没有效果?
这种效果如何处理?
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
#main {
position: relative;
margin: 30px;
height: 200px;
width: 200px;
border: 1px solid #eee;
border-bottom: none;
}
#main .block {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
}
#main .shadow {
position: absolute;
height: 14px;
width: 200px;
bottom: -7px;
background-image: radial-gradient(#eee, #fafafa, #fff);
}
</style>
</head>
<body>
<div id="main">
<div class="shadow"></div>
<div class="block"></div>
</div>
</body>
</html>
效果图:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>阴影</title>
<style type="text/css">
.card{position:relative;width:200px;height:200px;border:1px solid #ddd;background-color: #fff;}
.card:before{content:"";position:absolute;bottom:0%;display:block;width:100%;height:30px;box-shadow: 0 2px 20px #ccc;border-radius:50%;z-index:-1}
</style>
</head>
<body>
<div class="card">
</div>
</body>
</html>
不考虑兼容低版本浏览器的话用伪元素
3 回答5.2k 阅读✓ 已解决
5 回答2.1k 阅读
2 回答2k 阅读✓ 已解决
1 回答3.1k 阅读✓ 已解决
3 回答2.5k 阅读
2 回答1.1k 阅读✓ 已解决
2 回答2.2k 阅读
不考虑低版本浏览器兼容(IE8等)的话,可以用border-radius构建一个椭圆,再用box-shadow实现阴影。
如果需要考虑低版本浏览器兼容的话,用png(京东)。
css实现。