码迷,mamicode.com
首页 > 其他好文 > 详细

垂直居中备忘

时间:2018-02-28 23:02:50      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:tps   color   translate   著作权   post   reverse   top   www.   justify   

对需要水平垂直居中的元素写css:

 .mid{
     position  : absolute;
     top       : 50%;
     left      : 50%;
     transform : translate(-50%,-50%);
 }

flex:

对父级元素写css:

单行居中:

1 .mid{
2     display         : flex;
3     justify-content : center;
4     align-items     : center;
5 }        

 

多行垂直居中:

.mid{
    display          : flex;
    justify-content  : center;
    flex-wrap        : wrap/wrap-reverse;
    align-items      : center;
}        

grid:

作者:岑锦超
链接:https://www.zhihu.com/question/19583370/answer/23681292
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处

垂直居中备忘

标签:tps   color   translate   著作权   post   reverse   top   www.   justify   

原文地址:https://www.cnblogs.com/hibiki/p/8485967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!