content
テスト用の3カラムレイアウト。sidebar,content共に横幅可変。
html
<div id="header"></div>
<div id="container">
<div id="wrapper">
<div id="content"></div>
<div id="sidebar1"></div>
</div>
<div id="sidebar2"></div>
</div>
<div id="footer"></div>
css
div#header {width : 100%;}
div#container {width : 100%;}
div#wrapper {
float : left;
width : 80%;
}
div#content {
float : right;
width : 75%;
}
div#sidebar1 {
float : left;
width : 25%;
}
div#sidebar2 {
float : right;
width : 20%;
}
div#footer {
clear : both;
width : 100%;
}