当前位置:Gxlcms > css > css垂直居中实现代码

css垂直居中实现代码

时间:2021-07-01 10:21:17 帮助过:33人阅读

本文主要和大家分享css垂直居中实现代码,希望本文css代码能帮助到大家。

1.如果是单行文本, line-height 的值和height相等

案例如下:

.verticle{    height: 100px;    line-height: 100px;}

2.已知宽度和高度的元素,采用绝对定位

案例如下:

.container {  position: relative; 
}.vertical {  width : 300px; /*子元素的宽度*/
  height: 300px;  /*子元素高度*/
  position: absolute;  top:50%;  /*父元素高度50%*/
  left: 50%; 
  margin-left: -150px;  margin-top: -150px; /*自身高度一半*/}

3.未知宽度和高度的元素,采用css3的旋转

案例如下:

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

4.css3的弹性盒模型

案例如下:

.content{     display:flex;     justify-content: center; /*子元素水平居中*/
     align-items: center; /*子元素垂直居中*/}

5.模拟表格布局,缺点是IE6,7不兼容

案例如下:

.container {      display: table;}.content {      display: table-cell;      vertical-align: middle; }

相关推荐:

6种CSS水平垂直居中解决方案

css水平垂直居中的4种实现方法

在div中img,span怎样可以做出垂直居中

以上就是css垂直居中实现代码的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行