ホームページ >ウェブフロントエンド >CSSチュートリアル >Div 内の順序なしリストを中央に配置するにはどうすればよいですか?

Div 内の順序なしリストを中央に配置するにはどうすればよいですか?

DDD
DDDオリジナル
2024-11-17 05:51:03708ブラウズ

How to Center an Unordered List Inside a Div?

Div 内の順序なしリスト (UL) の水平方向の配置

を中央に配置するには

.container {
  display: flex;  /* Enables flexbox layout for the div */
  justify-content: center;  /* Aligns the div's children horizontally */
}

解決策 1: Flexbox を使用する

.container ul {
  margin: 0 auto;  /* Aligns the ul horizontally to the center of the div */
}

解決策 2: Margin Auto を使用する

.container {
  text-align: center;  /* Aligns the div's children horizontally */
}
>

解決策 3: テキスト配置を使用する
.container ul {
  position: absolute;
  left: 50%;  /* Positions the ul 50% from the left, effectively centering it */
  transform: translate(-50%, 0);  /* Counteracts the 50% left position */
}

解決策 4: 絶対配置を使用する
.container ul {
  display: inline-block;  /* Makes the ul behave like an inline element */
  text-align: left;  /* Aligns the ul's text to the left */
}

解決策 5: ブロック要素を使用する特定の要件とブラウザーのサポートのニーズに最適なソリューションを選択してください。

以上がDiv 内の順序なしリストを中央に配置するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。