我已经在布局上工作了一段时间。我决定在 jsFiddle 中创建一个示例。
我遇到的问题是 ASIDE 没有扩展到其父“包装器”的完整高度,仅扩展到视口的高度。ASIDE,也需要能够向右或向左移动。
我对创建此布局的其他方法持开放态度,无需表格。
/* PHP option to control the width of all content by wrapper via style */
/* PHP option to control which side to float the sidebar to via style */
<div id="wrapper" style="width:100%;">
<aside style="float: right;">This Sidebar</aside>
<header>The Header</header>
<section>The Main Content Area</section>
<footer>The Footer</footer>
</div>
html, body {
min-height: 100%;
height: 100%;
}
#wrapper {
margin: 0;
padding: 0;
background: brown;
height: 100%;
}
aside {
width: 200px;
background: yellow;
height: 100%;
}
header {
height: 150px;
background: blue;
width: 100%;
}
section {
background: red;
width: 100%;
height: 100%;
}
footer {
height: 50px;
background: green;
width: 100%;
}