css垂直置中實現代碼

來源:互聯網
上載者:User

本文主要和大家分享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; }
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.