Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
さて、要素の中央揃えに問題があります。幅が 2300px の div があります。
HTML
<div id="myDiv"></div>
CSS
#myDiv { position: absolute; top: 0; left: 50%; margin: 0 0 0 -1150px;}
これは、iPad Safari を除くすべてのブラウザでうまく機能します。この問題を回避する方法を知っている人はいますか?
よろしく、デビッド
div は絶対配置する必要がありますか?
そうでない場合は、そのまま使用できますmargin: 0 auto;
margin: 0 auto;
また、幅を定義してみてください。