码迷,mamicode.com
首页 > 其他好文 > 详细

div盒子的居中

时间:2016-01-04 15:35:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<title>XXXX</title>
<meta charset="utf-8" />
<style type="text/css">
*{
margin:0px;
padding:0px;
}

#content{
width:400px;
height:600px;
border:1px solid red;  /*边框样式*/
position:absolute;
top:50%;
left:50%;
margin-top:-300px;  /* -301px;*/
margin-left:-200px;  /*-201px*/
}
</style>
<body>
     <div id="content">
         ......
     </div>
</body>
</html>

 

div盒子的居中

标签:

原文地址:http://www.cnblogs.com/wuheng1991/p/5099044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!