如何设计HTML / CSS结构,将固定大小的容器水平分成三个部分。第一部分应该与其内容需求一样高。第二部分和第三部分将分享剩下的空间五十五 - 无论其内容如何。如果其内容的大小超出此限制,则该部分应该是可滚动的。
它的HTML部分很简单:一个div
容器,其中有三个div
作为子容器。
我试图用flexbox解决这个问题 - 不过可能有更好的选择:
css部分:
#container {
position: absolute;
width: 100%; height: 100%;
display: flex;
flex-direction: column;
}
#item1 { flex: 0 0 auto; }
#item2 { flex: 1 1 auto; }
#item3 { flex: 1 1 auto; }
不幸的是,只有当第2项或第3项的内容不是太大时,这才有效。
有关问题的更详细实施,请参阅this fiddle。
body {
margin: 0;
overflow: hidden;
}
* {
box-sizing: border-box;
}
#container {
position: absolute;
width: 100%;
height: 100%;
border: 2px solid green;
display: flex;
flex-direction: column;
}
#item1 {
flex: 0 0 auto;
background-color: Bisque;
}
#item2 {
flex: 1 1 auto;
background-color: DarkOrange;
}
#item3 {
flex: 1 1 auto;
background-color: MediumAquaMarine;
}

<div id="container">
<div id="item1">I'll be as tall as my content takes.</div>
<div id="item2">From the rest, I'll take exactly 50%. No matter how short or long my content is. If needed there should be scrollbars.</div>
<div id="item3">I'll take the other 50% of the rest!
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
<br>right?
</div>
</div>
&#13;
答案 0 :(得分:1)
是的,你可以使用flex。这对您的代码有一点改进。 Item1不需要有flex规则,item2和item3将有flex: 1
。
我还添加了overflow-y: auto;
规则以使其可滚动。
#item1 {background-color: Bisque ; }
#item2 { flex: 1; background-color: DarkOrange ; overflow-y: auto;}
#item3 { flex: 1; background-color: MediumAquaMarine ; overflow-y: auto;}