DIV水平垂直居中

Posted 韩帅

tags:

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            margin:0;
            padding:0;
        }
        .box{
            position: fixed;
            top:50%;
            left:50%;
            background-color: red;
            width: 100px;
            height: 100px;
            margin-left:-50px;
            margin-top:-50px;
        }
    </style>
</head>
<body>
        <div class="box"></div>
</body>
</html>

 

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

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

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

实现div内容水平垂直居中

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

水平和垂直居中容器 div

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