我正在設計一個頁面,該頁面有兩個左側的表格(一個在另一個的下面),右側的一個表格和中間的文本塊。以下是我已經試過:在兩個表格之間放置一段文字
CSS:
#left {
float:left;
padding-right: ;
}
#right {
float:right;
}
#center {
margin-left: ;
margin-right: ;
}
#text {
width:60%;
margin:0 auto;
}
HTML:
<body>
<div id="left">
<table style="width:; background-color:#>
...
</table>
<table style="width:; background-color:#">
...
</table>
</div>
<div id="right">
<table>
...
</table>
</div>
<div id="center">
<div id="text">
<h>My text goes here</h>
</div>
</div>
</body>
中央部分(文本)出現在頁面的中間,但它是正確的下三張桌子(左側和右側),不在他們之間......我該如何解決它?
謝謝!
我在中間看到它,並且第一個和第二個表重疊:http://jsfiddle.net/72t0mjmf/ – 2014-09-02 21:32:32