久々にレイアウトを練りました。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%;
}