子容器居中显示在父容器中

来源:互联网 发布:跳跃网络平台 编辑:程序博客网 时间:2024/06/05 02:02
   <style>
    .partent{
        background-color:#3C0;
        position:relative;
        width:600px;
        height:600px;
        }
    .child{
        background-color:#F00;
        position:absolute;
        width:300px;
        height:300px;
        left:50%;
        top:50%;
        margin:0 auto;
        margin-left:-150px;
        margin-top:-150px;
        
        }
   
    </style>
    </head>
    <body>
    <div class="partent">
   <div class="child"></div>
    </div>
    </body>

0 0
原创粉丝点击