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

如何让一个div在另一个div中绝对居中(水平+垂直)

时间:2015-02-11 14:22:17      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

html:

<html>
<head></head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>

css:

<style>
.parent{
position:relative;
width:600px;
height:300px;
border:1px solid red;
}
.child{
position:absolute;
width:450px;
height:198px;
left:50%;
top:50%;
margin-left:-225px;
margin-top:-99px;
}
</style>


效果如下图:

技术分享

如何让一个div在另一个div中绝对居中(水平+垂直)

标签:

原文地址:http://www.cnblogs.com/ecosu/p/4285923.html

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