私は自分のページでいくつかのCSSプロパティを追加するjQueryアニメーションを使用していますが、なぜ機能しないのかわかりmargin: auto
ません。
HTMLコード(jQueryによって追加されたスタイルプロパティを含む):
<body style="overflow: hidden;">
<div id="tuto_wamp" style="width: 7680px; height: 923px; ">
<!-- Step 1 -->
<div style="height: 549px; width: 1280px; margin-top: 0px; margin-left: 0px; position: absolute; overflow-y: hidden; overflow-x: hidden; ">
<div class="content_tuto">
<img src="images/install1.png" alt="">
</div>
</div>
</div>
</body>
私のCSSコード:
#tuto_wamp
{
background: #3a393c;
width: 100%;
}
.content_tuto
{
width: 100%;
margin: auto;
display: block;
}
margin: auto
どのプロパティが画像を中央に配置するのをブロックしているかわかりません。
ありがとうございました。