0

重複の可能性:
ウェブページのコンテンツを中央に配置

Webページの中央を揃える方法に従いましたが、サイトはまだ左揃えになっています。手伝ってください。ありがとう

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

1 に答える 1

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