我已按照网页中心对齐的方式,但网站仍然保持对齐状态。请帮忙。感谢
#parent{
margin:0 auto;
width: 960px;
}
<div id="parent">
<!--more code goes here-->
</div>
答案 0 :(得分:4)
在某些浏览器中,您仍然需要在主体上放置text-align
才能使其正常工作:
body {
text-align: center; /* this helps some browsers align the #parent element */
}
#parent{
margin:0 auto;
width: 960px; /* a fixed width is mandatory for margin auto to work */
text-align: left; /* this resets the contents alignment */
}