我想實現的是類似於THIS的東西,也就是說,有3個按鈕,一個在左邊,一個在中心,右邊一個,在同一個「行」中,但使用css和div,因爲我知道使用表格來佈置頁面是錯誤的。如何在另一個兩個(左側和右側)div之間居中div?
我想我需要使用浮動,我已經實現了正確的左,右divs,但我不能讓中心的div,以及居中,它只是跳出了行的另外兩個。
我嘗試:
HTML:
<div class="left" ><input type="button" value="left" /></div>
<!--<div class="center" ><input type="button" value="center" /></div>-->
<div class="right" ><input type="button" value="right" /></div>
<!-- If I uncomment the center div, the right one appears in another block, below the others-->
CSS:
.left {
float:left;
}
.right {
float:right;
}
.center{
/*what do i put here??*/
}
here is a fiddle與,亂了。
我該如何實現它,並獲得最接近表格佈局的例子?
注意:我查看了其他類似的問題,但我找不到具有完全相同問題的問題。
我花了第二次看我的解決方案,確實存在這樣的問題,你指出。我改進了解決方案和解釋。祝一切順利! –