小技巧3 - 文字垂直居中

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>文字垂直居中</title>
    <style type="text/css">
        .demo{
            width: 100%;
            text-align: center;
            font-size: 20px;
            
            height: 100px;    
            line-height: 100px;

            background-color: #f2f2f2;
        }
    </style>
</head>
<body>
    <div class="demo">line-height文字垂直居中</div>
</body>
</html>

 

posted @ 2018-05-05 17:57  民院小青年  阅读(112)  评论(0编辑  收藏  举报