首页 > 其他 > 详细

div盒子的居中

时间:2016-01-04 15:32:36      阅读:481      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!