問題: CSS を使用して順序なしリスト (
目標: 目標は、 div内のリスト
解決策:
コード例:
/* Solution 1: max-width and margin */ .container ul { max-width: 400px; margin: 0 auto; } /* Solution 2: display: inline-block and text-align */ .container-2 { text-align: center; } .container-2 ul { display: inline-block; } /* Solution 3: display: table and margin */ .container-3 ul { display: table; margin: 0 auto; } /* Solution 4: position: absolute, translateX, and left */ .container-4 ul { position: absolute; left: 50%; transform: translateX(-50%); } /* Solution 5: Flexbox Layout */ .container-5 { display: flex; justify-content: center; } .container-5 ul { list-style-position: inside; }
これらのソリューションのいずれかを CSS に適用すると、順序なしリストを効果的に内部の水平方向の中央に配置できます。 div コンテナ。
以上がDiv 内の順序なしリストを水平方向に中央揃えにするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。