gpt4 book ai didi

html - 有没有办法让 box-shadow 到页面底部?

转载 作者:太空宇宙 更新时间:2023-11-04 13:21:54 46 4
gpt4 key购买 nike

我想让我的图像 #afb1 的阴影到达页面底部,而阴影和页面底部之间没有空白页。这可能吗?

就像当我将#afb1 的高度更改为 500px 时它会变高,但我希望它连接到页面底部

html:

<div id="pics">

<div id="afb1">
<img src="Images/Chingy.png" alt="mooiboy" height="200" width="200" onmouseover="this.src='Images/chingy.jpg'" onmouseout="this.src='Images/Chingy.png'">
</div>
</div>

CSS:

#pics{
margin: 0 auto;
text-align: center;
width:880px;
height:100%;
}

#pics img{
border-radius: 100px;
}

#afb1{
float:left;
height:100%;
box-shadow: 2px 0px 21px 0px rgba(50, 50, 50, 0.35);
border-top-left-radius: 100px;
border-top-right-radius: 100px;
margin-right: 20px;
}

http://jsfiddle.net/7fA78/

最佳答案

页面的 100%。问题是您的页面不是窗口的 100%。添加这个

body,html{
margin: 0;
padding:0;
height: 100%;
}

关于html - 有没有办法让 box-shadow 到页面底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24017076/

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