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; }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.