gpt4 book ai didi

html - 将 div 定位在 “absolute”
的底部

转载 作者:行者123 更新时间:2023-11-28 06:08:52 25 4
gpt4 key购买 nike

我无法定位我的 div。我想让我的 child div 贴在 parent div 的底部,grandchild_1grandchild_2 保持正确放。就此而言,我的意思是在 grandchild_2 之前有 grandchild_1,如图所示。

这是我试过的,但是“子”div 粘在顶部:

#parent {
position: relative;
}

#child {
position: absolute; bottom: 0;
}



<div id="parent">
<div id="child">
<div id="grandchild_1">
</div>
<div id="grandchild_2">
</div>
</div>
</div>

enter image description here

有人知道我应该如何进行吗?谢谢!

最佳答案

如果您在父级上指定高度,它将粘在底部。

示例:http://codepen.io/anon/pen/wGqzVd

HTML

<div id="parent">
Parent
<div id="child">
Child
<div id="grandchild_1">
Grandchild 1
</div>
<div id="grandchild_2">
Grandchild 2
</div>
</div>
</div>

CSS

div {
padding: 5px;
}

#parent {
position: relative;
background: lightgray;
height: 200px;
width: 150px;
}

#child {
position: absolute;
bottom: 5px;
background: yellow;
}

#grandchild_1 {
background: pink;
}

#grandchild_2 {
background: lightblue;
}

关于html - 将 div 定位在 “absolute” <div> 的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36291236/

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