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

两种方法实现盒子居中----以“回”字为例

时间:2017-01-24 10:56:32      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:padding   idt   body   pos   osi   tom   div   style   实现   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
padding:0;
margin:0;
}
.box1 {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 300px;
border: 50px solid #000;
margin: -200px auto auto -250px;
}
.box2{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 150px;
height: 100px;
border: 50px solid #000;
}
</style>
</head>
<body>
<div class="box1">
<div class="box2">
</div>
</div>
</body>
</html>

两种方法实现盒子居中----以“回”字为例

标签:padding   idt   body   pos   osi   tom   div   style   实现   

原文地址:http://www.cnblogs.com/qiancheng123/p/6346500.html

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