欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css实现水平垂直居中的方法

程序员文章站 2024-01-26 15:38:30
...
<!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>
        *{
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
        #father{
            width: 200px;
            height: 200px;
            background-color:pink;
            position: relative;
            margin: 0 auto;
            top: 50%;
            margin-top: -100px;
        }
        .son{
            width: 100px;
            height: 100px;
            background-color: blue;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -50px;
            margin-left: -50px;
            /* transform: translate(-50%,-50%); */
        }
        
    </style>
</head>
<body>
    <div id="father">
        <div class="son"></div>
    </div>
</body>
</html>

css实现水平垂直居中的方法

相关标签: 笔记 css