gpt4 book ai didi

html - Css 框阴影移动到顶部和左侧

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

enter image description here

CSS 和 HTML:

body {background:#ccc}

.box h3{
text-align:center;
position:relative;
top:80px;
}
.box {
width:70%;
height:200px;
background:#FFF;
margin:40px auto;
}

.effect3
{
position: relative;
}
.effect3:before
{
z-index: -1;
position: absolute;
content: "";
bottom: 15px;
left: 10px;
width: 50%;
top: 80%;
max-width:300px;
background: #777;
-webkit-box-shadow: 0 15px 10px #777;
-moz-box-shadow: 0 15px 10px #777;
box-shadow: 0 15px 10px #777;
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
transform: rotate(-3deg);
}
<div class="box effect3">
<h3>Effect 3</h3>
</div>

我正在尝试用阴影装饰一个盒子。

上面的 css 用于阴影底部和左侧(在红色圆圈中)。应用于顶部和左侧(红色箭头)的 css 可以是什么?

最佳答案

请将这些代码用于左上角的框阴影:

.effect3:before {
z-index: -1;
position: absolute;
content: "";
bottom: 15px;
left: 3px;
width: 18%;
top: 24px;
max-width: 300px;
background: #777;
-webkit-box-shadow: -8px 15px 10px #777;
-moz-box-shadow: -8px 15px 10px #777;
-webkit-transform: rotate(87deg);
-moz-transform: rotate(87deg);
transform: rotate(87deg);
}

enter image description here

关于html - Css 框阴影移动到顶部和左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40020041/

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