我正在尝试设置顶部、左侧、中心、右侧、底部的边框布局。我已经看过一些示例并尝试了它们,但它们似乎都不起作用。主要问题在于左、中和右列。我只能让两个 div 水平对齐,第三个总是低于页脚。我需要这个可以调整大小。优选地,中心窗格将填满直到边界。
我试过向左浮动和向右浮动,但没有任何区别。
这是我到目前为止所尝试的。 http://jsfiddle.net/xQVWs/2/
<body>
<div class="top-wrapper">
<div class="content-wrapper">
<header>
header
</header>
</div>
</div>
<div class="mid-section">
<div class="left-wrapper">
Left Pane
</div>
<div class="main-content">
Main pane
</div>
<div class="right-wrapper">
right pane
</div>
</div>
<div class="bottom-wrapper">
<div class="content-wrapper">
footer
</div>
</div>
</body>