CSS垂直中央と水平中央
2947 ワード
前言
CSSの中央はずっと1つの比较的に敏感な话题で、后で开発する便利さのため、スレ主は确かに総括する必要があると感じて、総じて言えば、中央の问题は垂直の中央と水平の中央に分けて、実际には水平の中央はとても简単で、しかし垂直の中央の方式と方法は千奇百怪です.
インライン要素の中央揃えスキーム
水平方向中央:
ブロックレベル要素の中央揃えスキーム
水平方向中央:
垂直方向中央:
.box{
position:absolute;/* fixed*/
top:50%;
left:50%;
margin-top:-100px;
margin-left:-200px;
}
.box{
position: absolute; fixed
top:0;
right:0;
bottom:0;
left:0;
margin: auto;
}
.box{
display:table-cell;
vertical-align:middle;
text-align:center;
width:120px;
height:120px;
background:purple;
}
.box{
position: absolute;
transform: translate(50%,50%);
-webkit-transform:translate(50%,50%);
-moz-transform:translate(50%,50%);
-ms-transform:translate(50%,50%);
}
.box{
position:fixed;
display:block;
background:rgba(0,0,0,.5);
}
.box:before{
content:'';
display:inline-block;
vertical-align:middle;
height:100%;
}
.box.content{
width:60px;
height:60px;
line-height:60px;
color:red;
}
.box{
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-pack:center;
-webkit-justify-content: center;
-moz-justify-content: center;
justify-content: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-align:center;
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
}
締めくくり
スレ主はしばらくこれらの居中方法をマスターして、読者はもしまだ良い方法があるならばあるいはその地方が間違っていると感じて、評論を歓迎して、感謝を惜しまない.
ブログ園ブログCSDNブログ