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

小div在大div中垂直居中,以及div在页面垂直居中

时间:2016-05-16 00:12:48      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
<title>淘宝 2faner</title>
<style type="text/css">
.big{
width: 800px;
height: 500px;
background: #333;
position:absolute;
left: 50%;
top: 50%;
margin-left:-400px; 
margin-top: -250px;

}
.small{
width: 400px;
height: 200px;
position: absolute;
left: 50%;
top: 50%;
margin-left:-200px; 
margin-top: -100px;
background: #fff;
}
</style>
</head>
<body>
<div class="big">
<div class="small">
 
</div>
</div>
</body>
</html> 

 

小div在大div中垂直居中,以及div在页面垂直居中

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/5496653.html

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