使用margin+border实现居中

来源:互联网 发布:数据在被 编辑:程序博客网 时间:2024/06/14 08:49
<!DOCTYPE html><html lang="en">    <head>        <meta charset="utf-8">        <style type="text/css">            *{                padding:0;                margin:0;            }            .f{                width:498px;                height:498px;                background:red;                border:1px solid red;                margin:50px auto;            }            .s{                width:200px;                height:200px;                background:yellow;                margin:150px auto;            }        </style>    </head>    <body>    <div class="f">        <div class="s"></div>    </div>    </body></html>