gpt4 book ai didi

html - 根据子元素的高度(绝对位置)增加元素的父元素高度(相对位置)

转载 作者:行者123 更新时间:2023-12-04 14:46:10 24 4
gpt4 key购买 nike

如何根据具有绝对位置的子元素高度增加具有相对位置的父元素的高度。
在我下面的示例中, 的高度.parent 元素显示为 0px

PS: I do not want to use any script


预期:
enter image description here
我得到了什么:
enter image description here
jsFiddle
HTML:
<div class="parent">
<div class="child" style="top:20px;">Hello</div>
<div class="child" style="top:40px;">Some content</div>
<div class="child" style="top:60px;">Some more content</div>
</div>
CSS:
.parent{position:relative;background:green;height:100%;border:1px solid #000000;width:250px;}
.child{position:absolute;}

最佳答案

height:100%height:100px或随心所欲,在父类中
因为绝对位置没有任何高度,您应该为父级定义高度。

.parent{
position:relative;
background:green;
height:100px;
border:1px solid #000000;
width:250px;
}

关于html - 根据子元素的高度(绝对位置)增加元素的父元素高度(相对位置),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70016353/

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