我有一個有頁腳的網站。頁腳是簡單的灰色背景。我想將一些絕對大小的內容放在該頁腳中。在努力做到這一點,我嘗試了以下內容:用CSS橫向居中內容
<div style="background-color:gray; font-size:10pt; width:100%;">
<div style="margin-left:auto; margin-right:auto; text-align:center;">
<table border="0" cellpadding="0" cellspacing="0" style="width:800px; padding:8px 0px; text-align:center;">
<tr>
<td><img alt='' height="75" width="75" src="/images/img1.png" /></td>
<td><img alt='' height="75" width="75" src="/images/img2.png" /></td>
<td style="text-align:center; color:White;"><table border="0" cellpadding="0" cellspacing="0" style="text-align:center; width:100%;">
<tr><td>
<a href='index.html'>HOME</a> |
<a href='about.html'>ABOUT</a> |
<a href='contact.html'>CONTACT US</a>
</td></tr>
<tr><td>123 Pine Street | City, State 12345 | 1-800-555-5555</td></tr>
<tr><td style="font-size:8pt;">Copyright Company, Inc. | All Rights Reserved</td></tr>
</table></td>
<td><img alt='' height="75" width="75" src="/images/img3.png" /></td>
<td><img alt='' height="75" width="75" src="/images/img4.png" /></td>
</tr>
</table>
</div></div>
爲什麼我的800像素的桌子不在中間?
謝謝!
要麼這樣,還是樣式添加到表中,而不是 – afranz409 2011-03-26 15:39:53
正如我在第二句指出。如果你走這條路線,第二個分區並不是真的需要。 – primehunter326 2011-03-26 15:49:25