垂直方向の中央配置:
-
フレックスボックスを使用する方法:
.container { display: flex; justify-content: center; align-items: center; }
-
行の高さを指定する方法:
.container { height: 100vh; /* 高さを画面の高さに指定 */ display: flex; flex-direction: column; justify-content: center; text-align: center; /* テキストの中央配置 */ } .content { margin-top: auto; margin-bottom: auto; }
水平方向の中央配置:
-
テキストの中央配置:
.container { text-align: center; }
-
ブロック要素の中央配置:
.container { display: flex; justify-content: center; }
これらの方法を使用して、要素を垂直および水平方向に中央に配置することができます。適切な方法を選択し、デザインに合わせて適用してください。