重複の可能性:
ウェブページのコンテンツを中央に配置
Webページの中央を揃える方法に従いましたが、サイトはまだ左揃えになっています。手伝ってください。ありがとう
#parent{
margin:0 auto;
width: 960px;
}
<div id="parent">
<!--more code goes here-->
</div>
重複の可能性:
ウェブページのコンテンツを中央に配置
Webページの中央を揃える方法に従いましたが、サイトはまだ左揃えになっています。手伝ってください。ありがとう
#parent{
margin:0 auto;
width: 960px;
}
<div id="parent">
<!--more code goes here-->
</div>
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 */
}