我有一个包含其他两个部分的 HTML 部分“全部”。我无法让网站根据我放入其他两个部分的内容的长度来调整“全部”部分的高度。
<section id="all">
<section id="left_content">
<p>Something here.</p>
</section>
<section id="right_content">
<p>Something here.</p>
</section>
</section>
我目前将高度设置为 700 像素的固定大小。我想知道是否有可能在 CSS 中使该部分的高度与 left_content 和 right_content 部分的大小相关。
#all {
width: 900px;
height: 700px;
margin: 0 auto;
padding-top: 20px;
background: #F4F4F4;
}
#left_content {
float: left;
width: 570px;
margin-top:-20px;
padding: 0px 20px 10px 20px;
line-height: 25px;
font-size: 12px;
}
#right_content {
border-left:4px solid #cccccc;
float: right;
width: 250px;
padding: 0px 10px 20px 20px;
line-height: 20px;
font-size: 12px;
}