position实现居中

来源:互联网 发布:mysql change column 编辑:程序博客网 时间:2024/06/04 18:24
<!DOCTYPE html><html lang="en">    <head>        <meta charset="utf-8">        <style type="text/css">            *{                padding:0;                margin:0;            }            .f{                width:500px;                height:500px;                background:red;                position: relative;                margin:50px auto;            }            .s{                width:200px;                height:200px;                background:yellow;                position:absolute;                top:50%;                left:50%;                margin-top: -100px;                margin-left: -100px;               }        </style>    </head>    <body>        <div class="f">            <div class="s"></div>        </div>    </body></html>