gpt4 book ai didi

css - 强制绝对 div 听 parent 的填充?

转载 作者:太空狗 更新时间:2023-10-29 14:08:32 25 4
gpt4 key购买 nike

这是我的 HTML/CSS 当前的样子:

enter image description here

这是我想要它的样子:

enter image description here

我如何修改下面的 HTML/CSS 以使其显示我想要的样子?

HTML:

<div id="panel">
<div id="bottom">
<div class="update"></div>
</div>
</div>

CSS:

.update {
width: 100%;
background-color: #006699;
text-align: center;
height: 56px;
color: white;
}

#bottom {
position: absolute;
bottom: 20px;
width: 100%;
left: 0;
}

#panel {
width: 21.25%;
height: 100%;
background-color: #0794ea;
float: left;
padding: 0 1.5%;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}

谢谢

最佳答案

您可以使用包装器解决问题

您的 HTML 看起来像这样:

<div id="panel">
<div class="wrapper">
<div id="bottom">
<div class="update">
a
</div>
</div>
</div>
</div>

还有你的 CSS:

#panel {
width: 21.25%;
height: 100%;
background-color: #0794ea;
float: left;
padding: 0 1.5%;
box-sizing: border-box;
}

.update {
width: 100%;
background-color: #006699;
text-align: center;
height: 56px;
color: white;
}

.wrapper {
position: relative;
height: 100%;
}

#bottom {
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
background: yellow;
}

这是一支带有最终结果的笔:http://codepen.io/DanielVoogsgerd/pen/Lezjy

关于css - 强制绝对 div 听 parent 的填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17923153/

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