gpt4 book ai didi

html - 可变高度的 CSS 绝对位置

转载 作者:太空狗 更新时间:2023-10-29 12:26:35 26 4
gpt4 key购买 nike

我在一个父 div 中有两个 div。我想放置 div,使 div 1 的位置绝对位于父 div 的 bottom:0,而 div 2 始终位于 div 1 的顶部。

我使用绝对位置来放置 div。但是问题是 div 1 的高度可变。在这种情况下,如何将 div 2 放在 div 1 的顶部?请看附图: enter image description here

我正在尝试这个,但它不起作用:

HTML:

<div class="box">
<div class="wrap">
<div class="box2">box 2</div>
<div class="box1">box1</div>
</div>
</div>

CSS:

.box{
width: 200px;
height: 200px;
background: green;
position: relative;
}

.wrap{
position: absolute;
bottom: 0;
border: 1px solid blue;
}

.box1{
background: yellow;
height: 50px;
position: relative;
}

.box2{
background: red;
position: absolute;
top: 0;
}

演示: http://jsfiddle.net/P46ht/

最佳答案

你快到了。

试试这个 - 基本上从框中删除位置,并在 .wrap 上设置宽度:

.wrap{
position: absolute;
bottom: 0; left:0;right:0;
border: 1px solid blue;
}

.box1{
background: yellow;
}

.box2{
background: red;
}

示例:http://jsfiddle.net/P46ht/1/

关于html - 可变高度的 CSS 绝对位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18171935/

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