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

盒子模型上下左右居中方法总结

时间:2014-09-25 14:05:19      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   div   sp   on   

1.采用负边距和position结合方式

<html>
<head></head>
<body>
<style type="text/css">
.big{
position:relative;background:#eee;
width:100%;height:100%;
}
.small{
position:absolute;top:50%;left:50%;
width:200px;height:200px;border:1px solid red;
margin:-100px 0 0 -100px;background:#fff;
}
</style>
<div class="big">
  <div class="small">盒子居中</div>
</div>
</boyd>
</html>

 

盒子模型上下左右居中方法总结

标签:style   blog   color   io   os   ar   div   sp   on   

原文地址:http://www.cnblogs.com/bigdesign/p/3992549.html

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