您现在的位置:首页 >> 前端 >> 内容

分享一个css绝对定位的绝对好用的居中方法

时间:2017/9/18 9:07:00 点击:

  核心提示:全屏居中:.center{position: fixed;left: 50%;top: 50%;transform:translate(-50%,-50%) scale(1);}垂直居中:.verti...

全屏居中:

.center{

position: fixed;
left: 50%;
top: 50%;
transform:translate(-50%,-50%) scale(1);

}

 

垂直居中:

.vertical-center{

position: fixed;
left: 0;
top: 50%;
transform:translate(0%,-50%) scale(1);

}


 

水平居中:

.horizontal-center{

position: fixed;
left: 50%;
top: 0;
transform:translate(-50%,0%) scale(1);

}

注:这个方法在position:absolute;中也适用。


作者:网络 来源:Nonam_Ciel