gpt4 book ai didi

css - 从中间向 div 底部添加 box-shadow

转载 作者:行者123 更新时间:2023-11-28 17:18:31 25 4
gpt4 key购买 nike

我附上了我想要的预览。老实说,我找不到合适的词来形容它,所以我没有找到如何做到这一点的运气。

Some sort of card effect

非常感谢。

最佳答案

您可以使用一个伪元素来创建一个椭圆形并给它一个盒子阴影。尝试使用 box-shadowheight 值来获得您想要的。

div {
width: 300px;
height: 300px;
background-color: #FFF;
position: relative;
}

div:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 30px;
border-radius: 50%;
z-index: -1;
box-shadow: 0 8px 10px -10px rgba(0, 0, 0, 0.5);
}

https://jsfiddle.net/hkpy6eup/4/

关于css - 从中间向 div 底部添加 box-shadow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43055346/

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