0

可能重复:
网页的中心内容

我已经按照使网页中心对齐的方式,但该网站仍然是左对齐的。请帮忙。谢谢

#parent{
      margin:0 auto;
      width: 960px;  
}
<div id="parent">
          <!--more code goes here-->
</div>
4

1 回答 1

4

在某些浏览器中,您仍然需要text-align在 body 上加上 a 才能使其工作:

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 */
}
于 2012-09-29T22:34:46.487 回答