gpt4 book ai didi

html - 如何在其正下方的元素上绘制CSS框阴影?

转载 作者:太空宇宙 更新时间:2023-11-04 03:20:10 24 4
gpt4 key购买 nike

请参阅以下 jsfiddle。 http://jsfiddle.net/Lj56ehwf/

.shadow {
padding: 10px;
background-color: red;
box-shadow: 0 0 10px #000;
}
.container {
background-color: #d2d2d2;
margin: 0 100px;
}
<div class="shadow">
Text
</div>
<div class="container">
This container is drawn <strong>over</strong> the box shadow.
</div>
你如何确保盒子阴影绘制在容器上?而不是阴影上方的容器。我认为更改元素顺序不是一个好主意。

最佳答案

.shadow一个更高的z-index

.shadow {
position: relative;
padding: 10px;
background-color: red;
box-shadow: 0 0 10px #000;
z-index: 1;
}
.container {
background-color: #d2d2d2;
margin: 0 100px;
}
<div class="shadow">
Text
</div>
<div class="container">
This container is drawn <strong>over</strong> the box shadow.
</div>

关于html - 如何在其正下方的元素上绘制CSS框阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28031592/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com