gpt4 book ai didi

html - 如何获得高度 :100% div in a height:auto div?

转载 作者:行者123 更新时间:2023-11-28 10:37:18 25 4
gpt4 key购买 nike

这是我的 HTML:

<div id="container">
<div id="red"></div>
<div id="yellow">
<div id="green"></div>
</div>
</div>

这是我的 CSS:

#container { height:auto; width:100%; background:orange; float:left; }
#red { height:100%; width:200px; background:red; float:left; position:relative; }
#yellow { height:100%; width:calc(100% - 210px); background:yellow; float:right; position:relative; padding:5px; }
#green { height:300px; width:100%; background:green; }

这是一个示例:https://jsfiddle.net/cc5xL660/

在 jsfiddle 中,#red div 是不可见的。我正在寻找一种方法来使 #red div 在没有特定 height 维度的情况下可见。当然,我可以给 #red div height:300px#green div 应该是是动态的。我希望 #red div 具有相同的高度。

最佳答案

你必须给

  • position: relative to #container
  • position: absolute 到 #red

您的 JSFiddle 已编辑:https://jsfiddle.net/cc5xL660/4/

关于html - 如何获得高度 :100% div in a height:auto div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36658345/

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