floatで並べたリストのセンタリング - Weblog - hail2u.net.
- カテゴリー別アーカイブ 中央揃え
-
-
縦方向にセンタリング #CSS - Qiita
[css]
.outer {display: table;
height: 100px;}
.inner {display: table-cell;
height: 100%;
vertical-align: middle;}
[/css]
[css]
.outer {
display: table;
height: 100px;
}
.inner {
display: table-cell;
height: 100%;
vertical-align: middle;
}
[/css]