gpt4 book ai didi

css - 带有CSS的图像的圆形阴影

转载 作者:行者123 更新时间:2023-12-02 15:32:46 25 4
gpt4 key购买 nike

我想为图像创建圆形阴影并为 CSS 创建按钮,我在 CSS3 Drop Shadows Generator 中找到了解决方案为盒子创建圆形阴影。

enter image description here

但我不知道如何为我的案例应用代码(对于图像和按钮)

.box {
position: relative;
width: 400px;
height: 300px;
background-color: #fff;
box-shadow: 0 1px 5px rgba(0,0,0,0.25), 0 0 50px rgba(0,0,0,0.1) inset;
border-radius: 1% 1% 1% 1% / 1% 1% 1% 1%;
}
.box:after {
position: absolute;
width: 64%;
height: 12%;
left: 18%;
border-radius: 50%;
z-index: -1;
bottom: 0%;
content: "";
box-shadow: 0 50px 24px rgba(0,0,0,0.24);
}

感谢您的支持!

最佳答案

好的,创建一个 html 文档并粘贴以下代码:

<html>
<style type="text/css">
.box {
position: relative;
width: 400px;
height: 300px;
background-color: #fff;
box-shadow: 0 1px 5px rgba(0,0,0,0.25), 0 0 50px rgba(0,0,0,0.1) inset;
border-radius: 1% 1% 1% 1% / 1% 1% 1% 1%;
}
.box:after {
position: absolute;
width: 64%;
height: 12%;
left: 18%;
border-radius: 50%;
z-index: -1;
bottom: 0%;
content: "";
box-shadow: 0 50px 24px rgba(0,0,0,0.24);
}
</style>
<body>
<div class="box">
<img src="img.jpg" />
</div>
</body>
<html>

您必须在 body 中创建一个 div 元素并将 .box 类分配给 div像这样:

 <div class="box">
// put your content here (eg. image or text) and it will be inside the box
</div>

就这些。

关于css - 带有CSS的图像的圆形阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22742640/

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