CSSレイアウト実装テクニック
垂直方向の中央揃え
インライン要素の場合
heightとline-heightの値を同一に設定します。
ブロック要素の場合
絶対位置指定(要素サイズ既知)
.container {
position: relative;
}
.target-element {
position: absolute;
top: 50%;
left: 50%;
width: 180px;
height: 240px;
margin-left: -90px;
margin-top: -120px;
}
transformプ ...
7月2日 00:45 投稿