【CSS】页面顶部阴影
2020-01-30 本文已影响0人
德育处主任
![](https://img.haomeiwen.com/i7275569/89b67d8fb940f7d3.jpeg)
![](https://img.haomeiwen.com/i7275569/1979f432eebe437d.png)
body::before {
content: "";
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
z-index: 100;
}
利用伪元素实现,并设置 position:fixed;
body::before {
content: "";
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
z-index: 100;
}
利用伪元素实现,并设置 position:fixed;