高度百分比文字如何垂直居中

一.經常使用方式

讓文字水平垂直居中一般使用的方法是:text-align: center(水平居中);line-height: 20px(垂直居中);值得注意的是line-height的值必須是固定值,即該元素的高度必須固定。html

二.引出問題

<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <style>
            *{
                width: 100%;
                height: 100%;
            }
            .box{
                width: 40%;
                height: 30%;
                font-size: 24px;
                background: red;
                text-align: center;
                line-height: 100%;        (注意)
            }
    </style>
    <body>
        <div class="box">
            快讓我水平垂直居中!!!
        </div>
    </body>
    </html>
複製代碼

效果圖: 佈局

設置line-height是沒用的。

三.決解方案

  1. 利用彈性佈局
  2. 利用display:table-cell

display:table-cell屬性指讓標籤元素以表格單元格的形式呈現,相似於td標籤。由於單元格有一些比較特別的屬性,例如元素的垂直居中對齊,關聯伸縮等,咱們能夠利用單元格的特性來實現功能。多行文本居中一樣適用。
相關文章
相關標籤/搜索