gpt4 book ai didi

html - 扩展 float 菜单,因此高度与内容 div 相匹配

转载 作者:太空宇宙 更新时间:2023-11-04 00:24:31 25 4
gpt4 key购买 nike

我有一个内容 div 和一个侧边栏,内容 div 的高度将根据正在加载的内容进行调整,但我希望侧边栏 div 一直向下扩展,具体取决于内容的最大大小,侧边栏应该是相同的大小。

Fiddle, Fiddle, Fiddle! - JS Fiddle

查看上面的 fiddle ,我希望侧边栏一直向下延伸,具体取决于内容 div 的高度。

对于非 fiddler :
CSS

#content
{
border:1px solid black;
float: left;
width: 80%;
}

#sidebar
{
width: 19%;
border:1px solid red;
float: left;
background-color: #ddd;
}

p{text-align: right}

HTML

<div id="container" style="background-color: #f2f2f2">
<div id="content">Here is the content, the height of this div will vary depending on the content.
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<p>I dont want this big empty box. --> <br/>I want the sidebar extended down here--></p>
</div>
<div id="sidebar">I want this sidebar to extend ALL the way down, to match the #content divs height (whatever it is, dynamic)</div>
<div style="clear:both"></div>

最佳答案

您将不得不为此使用 javascript。使用 Jquery,它将类似于以下内容。

    $('#sidebar').height($('#content').height());

fiddle http://jsfiddle.net/YMFGU/9/

关于html - 扩展 float 菜单,因此高度与内容 div 相匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7434635/

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