div水平、垂直居中

#HTML #CSS
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
    <style type="text/css">
    .test_center
    {
     background-color:Red; 
     width:500px; 
     height:300px;
     
     position: absolute;/*设置为绝对定位*/
     top: 50%;
     left:50%;
     margin-left:-250px;/*设置为宽度的一半*/
     margin-top:-150px;/*设置为高度的一半*/
    }
    </style>
</head>
<body>
    <div class="test_center">    
    </div>
</body>
</html>


评论 (0)

暂无评论,快来发表第一条评论吧!