div水平垂直居中

Posted dog2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div水平垂直居中相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body,
        html {
            margin: 0;
            width: 100%;
            height: 100%;
        }

        #box {
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            position: relative;
        }

        #content {
            position: absolute;
            width: 70%;
            height: 70%;
            background: pink;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
        }
    </style>
</head>

<body>
    <div id="box">
        <div id="content"></div>
    </div>
</body>

</html>

  

以上是关于div水平垂直居中的主要内容,如果未能解决你的问题,请参考以下文章

css 实现DIV水平垂直居中于屏幕

怎么使用CSS让图片水平垂直都居中?

实现div内容水平垂直居中

css html 如何将图片img标签 水平居中 垂直居中 和水平垂直居中

水平和垂直居中容器 div

div水平垂直居中的几种方法