使网页中心对齐

时间:2012-09-29 22:31:04

标签: html css

  

可能重复:
  Center contents of webpage

我已按照网页中心对齐的方式,但网站仍然保持对齐状态。请帮忙。感谢

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

1 个答案:

答案 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 */
}