程序员

【HTML中垂直居中】【容器】使用绝对定位

2018-11-02  本文已影响5人  fanlehai

【方法一】


<html>

<head>
    <style type="text/css">
        .content {
            background-color: rgb(87, 87, 92);
            position: absolute;
            top: 50%;
            height: 240px;
            margin-top: -120px;
            /* negative half of the height */
        }
    </style>
</head>

<body>
    <div class="content">Content goes here</div>
</body>

</html>

【方法二】


<html>

<head>
    <style type="text/css">
        #content {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            height: 240px;
            width: 70%;
            background-color: rgb(87, 87, 92);
        }
    </style>
</head>

<body>


    <div id="content"> Content here</div>

</body>

</html>

参考链接:
上一篇下一篇

猜你喜欢

热点阅读