CSSが中央に位置する各種の方案
3236 ワード
CSSが中央に位置する各種の方案
container
)の様式と中央を必要とする要素(item
)の様式に分けられる.flex
実装.水平方向中央
.container {
text-align: center;
}
.item {
margin: 0 auto;
}
inline-block
案.container {
text-align: center;
}
.item {
display: inline-block;
}
flex
案.container {
display: flex;
justify-content: center;
}
垂直方向中央揃え
.container {
padding: 50px 0;
}
.container {
height: 100px;
line-height: 100px;
}
table
案.container {
display: table;
}
.item {
display: table-cell;
vertical-align: middle;
}
flex
シナリオ(複数行の内容がテキストの場合、1つの要素に包まなくてもよい).container {
display: flex;
flex-direction: column;
justify-content: center;
}
font-size
を0に設定し、要素にfont-size
を必要な値に設定する..container {
font-size: 0;
}
.container::before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.item {
display: inline-block;
vertical-align: middle;
font-size: 16px;
}
.container {
position: relative;
}
.item {
position: absolute;
top: 50%;
height: 100px;
margin-top: -50px;
}
.container {
position: relative;
}
.item {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
flex
案.container {
display: flex;
flex-direction: column;
justify-content: center;
}
水平方向と垂直方向を同時に中央に配置
.container {
position: relative;
}
.item {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
}
.container {
position: relative;
}
.item {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.container {
position: relative;
}
.item {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100px;
height: 100px;
margin: auto;
}
flex
プラン.container {
display: flex;
justify-content: center;
align-items: center;
}
.container {
display: flex;
}
.item {
margin: auto;
}
grid
案.container {
display: grid;
}
.item {
margin: auto;
}