zl程序教程

您现在的位置是:首页 >  其他

当前栏目

绝对定位居中布局

定位 布局 居中 绝对
2023-09-27 14:26:17 时间
<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            html,
            body {
                height: 100%;
            }
            
            .div {
                position: absolute;
                /*height: 200px;*/
                width: 800px;
                background: yellow;
                margin: 0 auto;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                /*margin-top: -100px;*/
            }
        </style>
    </head>

    <body>
        <div class="div"></div>
    </body>

</html>