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.
今日、FF4でフレキシブルボックスモデルを使用しているときに、を使用してドキュメント内のコンテナを中央に配置できないことに気付きましたmargin: 0 auto;。
margin: 0 auto;
このコンテナを中央に配置する方法を知っている人はいますか?Webkitでは、期待どおりに機能します。
これを試して:
FF用
display: -moz-box; -moz-box-orient: horizontal; -moz-box-pack: center; -moz-box-align: center;
通常の場合
display: box; box-orient: horizontal; box-pack: center; box-align: center;