有很多种实现方法,下面是用最简单的方法实现的,
思路,2个div用一个div包起来,然后让两个div浮动。然后给外面的父级进行定位。仅供参考。
<style type="text/css">* {margin:0px padding:0px}
.box {position:absolute top:50% left:50% width:200px height:100px margin-left:-50px margin-top:-50px}
.div1 {width:100px height:100px background:#ccc float:left}
</style>
</head>
<body>
<div class="box">
<div class="div1"></div>
<div class="div1"></div>
</div>
</body>