美文网首页
垂直居中容器

垂直居中容器

作者: 郑伟的菜园子 | 来源:发表于2016-10-12 22:33 被阅读16次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
            *{
                margin: 0;
                padding: 0;
            }
            .parent{
                width: 400px;
                height: 400px;
                border:1px solid gray;
                position: relative;
            }
            .child{
                width: 100px;
                height: 100px;
                top:0;
                left:0;
                right:0;
                bottom:0;
                margin:auto;
                background: pink;
                position: absolute;
            }
        </style>
    </head>
    <body>
        <div class="parent">
            <div class="child"></div>
        </div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:垂直居中容器

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