思路:背景div横铺float:left,然后指定显示div宽度并设置margin:auto。代码如下:
<div class="testbg">
<div class="test"/>
</div>
<style>
<!--
.testbg{
position:relative;
width:100%;
float:left;
}
.testbg .test{
position:relative;
width:1000px;
height:60px;
margin:auto;
}
-->
</style>
大家遇到div无法居中的情况可以试试。