gpt4 book ai didi

html - 是否可以在容器内提供阴影?

转载 作者:搜寻专家 更新时间:2023-10-31 21:55:49 26 4
gpt4 key购买 nike

.part-two{
float: left;
height:300px;
width: 200px;
background-color:green;
box-shadow: -10px -10px 1px red;
}
<div id="part-two" class="part-two">
</div>

在上面的代码中,我使用 box-shadow 属性给出了一个外部阴影,而不是我想在容器内部给出阴影,是否可以使用 box-shadow 方法给出内部阴影?如果是,如何?否则,是否有任何方法可以使用 css 提供内部阴影?

最佳答案

是的,可以将 inner-shadow 添加到元素中,您只需要在 中添加 inset 以及 properties >盒子阴影

The presence of the inset keyword changes the shadow to one inside the frame (as if the content was depressed inside the box). Inset shadows are drawn inside the border (even transparent ones), above the background, but below content.

.part-two{
float: left;
height:300px;
width: 200px;
background-color:green;
box-shadow: inset 0px 1px 10px 20px orange;
}
<div id="part-two" class="part-two">
</div>

关于html - 是否可以在容器内提供阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39614841/

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