gpt4 book ai didi

css - 元素上的径向框阴影

转载 作者:技术小花猫 更新时间:2023-10-29 11:24:24 24 4
gpt4 key购买 nike

有没有办法创建一个从矩形 div 元素呈圆形辐射的框阴影?所以就像一个普通的阴影,除了圆形。

最佳答案

严格来说 - 不。 box-shadow 与其分配给的对象的形状相关联。

就是说 - 假设您的代码允许嵌套 div 元素 - 您可以通过将包装 div 设置为带阴影的圆圈,并将内部内容 div 设置为矩形元素来有效地做到这一点。

.wrapper {
/* Equal width and height create a perfect square */
width: 300px;
height: 300px;
/* Adding a border-radius of 1/2 width or height (same value) */
/* turns that square into a circle */
border-radius: 150px;
/* Apply your box-shadow styles, which inherit the round .wrapper shape */
box-shadow: 0px 0px 200px #444444;
}

.content {
/* Apply .content styles as needed; */
/* will display on top of the round shadow */
background-color: yellow;
}
<div class="wrapper">
<div class="content">Content Here</div>
</div>

关于css - 元素上的径向框阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13905885/

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