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