我想做一個3列布局網頁百分比包裝寬度,固定(像素)左右側寬度和不同的中間列寬度,但我不能讓它爲中間工作柱。這裏是源:3列布局自動中間列寬度
HTML
<aside class="left">
<span>Categories</span>
</aside>
<section>
<span>Main</span>
</section>
<aside class="right">
<span>Test</span>
</aside>
CSS
* {
margin: 0px;
padding: 0px;
}
html, body {
height: 100%;
width: 100%;
}
.container {
height: 100%;
width: 100%;
}
.container > aside.left {
float: left;
width: 197px;
border-right: black dashed 3px;
}
.container > section {
float: left;
width: auto;
}
.container > aside.right {
float: left;
background-color: #005f98;
width: 200px;
}
謝謝你!最容易接受這個答案。 – Gasim