我想創建一個強大的css樣式,它可以運行幾乎所有的瀏覽器(包括IE7,firefox 3) ,它們顯示兩列和一個頁腳除以點邊境。 我試圖執行下面的代碼, ,但我有一個問題: 當我應用邊界右風格:虛線;向左類 A和B不在同一水平面。 請halp我修復CSS樣式。兩列和一個頁腳使用css分割的邊界(單邊)
Click here for the current example。
HTML
<div class="container">
<div clas="left">A</div>
<div class="right">B</div>
<div class="footer">C</div>
</div>
CSS
div.container {
background:#eee;
margin: 0 auto;
width: 750px;
}
.left{
background:#ddd;
float: left;
width: 50%;
border-right-style:dotted;
}
.right {
background:#eee;
float: right;
width: 50%;
}
.footer {
background: none repeat scroll 0 0 #eef;
clear: both;
border-top-style:dotted;
}
支持我不會說這就是AntonJs在尋找的東西,因爲他們使用%不是固定的計量單位 –
@Alistair - 由於容器'div'的寬度是固定的,我認爲這可能是可以接受的。我也提到了他可以簡單地降低百分比寬度的事實。 –
對不起,你安靜的容器確實有一個固定的寬度,你確實提到了百分比。 [已經很長一週了] –