gpt4 book ai didi

html - 侧边栏高度随内容高度 CSS 拉伸(stretch)

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

我有 2 个 DIV:

<div id="sidebar"></div>
<div id="content"></div>

我如何使侧边栏 div 拉伸(stretch)与内容相同的高度。

感谢您的帮助。

更新:

这是我的示例代码和其他元素:

http://tinkerbin.com/tkp2FZLZ

中间有一个内容 DIV 和 4 个不同颜色的边框。

最佳答案

您可以通过display:table-cell;轻松得到您想要的结果

HTML

<div id="sidebar">sidebar</div>

<div id="content">content</div>

CSS

#sidebar {
display:table-cell;
width:100px;
background:red;

}
#content {
display:table-cell;
width:100px;
background:yellow;
height:200px;
}

我觉得你看起来像这样;- http://tinkerbin.com/yqyX3mXg

关于html - 侧边栏高度随内容高度 CSS 拉伸(stretch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11359407/

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