我無法讓我的網站以CSS爲中心。我已經嘗試了所有的網絡,包括各地提出的常用方法:無法獲得CSS元素居中
body {
text-align: center;
}
#container {
width: 770px;
margin: 0 auto;
text-align: left;
}
然後使用
<div id="container>
<!-- Centered Content Goes here-->
</div>
,但它只是不會去市中心。它停留在頁面的左側。
的CSS的,我想爲中心元素的一個例子是這樣的:
#topHeader
{
background:url(images/top_header.jpg);
position:absolute;
width: 695px;
height: 242px;
top: 0px;
left: 0px;
}
所以,我的HTML應該是這樣的:
<div id="container>
<div id="topHeader></div>
<!-- All other elements go here as well-->
</div>
但正如我之前提到的,該元素保持放置。 謝謝! 埃裏克
深紅色,你不能在不知道其寬度的情況下居中塊元素。 –