美文网首页
css垂直居中的几种实现方式

css垂直居中的几种实现方式

作者: 柏龙 | 来源:发表于2017-04-10 15:25 被阅读0次

使用padding

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .wrap {
            width: 300px;
            background-color: pink;
            padding: 100px 0;
            text-align: center;
        }
    </style>
</head>
<body>
<div class="wrap">
    使用padding让文本垂直居中显示
</div>
</body>
</html>

使用绝对定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .wrap {
            width: 300px;
            height: 300px;
            line-height: 300px;
            text-align: center;
            background-color: red;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -150px;
            margin-top: -150px;
        }
    </style>
</head>
<body>
<div class="wrap">
    使用绝对定位让.wrap垂直居中显示
</div>
</body>
</html>

使用CSS3 transform

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .wrap {
            width: 300px;
            height: 300px;
            line-height: 300px;
            text-align: center;
            background-color: red;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
    </style>
</head>
<body>
<div class="wrap">
    使用CSS3 transform让 .wrap垂直居中显示
</div>
</body>
</html>

使用伪元素

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .wrap {
            width: 400px;
            height: 300px;
            margin: 0 auto;
            background-color: #ccc;
            text-align: center;
        }
        .wrap::before {
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }
    </style>
</head>
<body>
<div class="wrap">
    使用伪元素实现垂直居中
</div>
</body>
</html>

相关文章

网友评论

      本文标题:css垂直居中的几种实现方式

      本文链接:https://www.haomeiwen.com/subject/mwisattx.html