为什么蓝色 div 不与绿色 div 相邻?
这是html。只不过是有边界的容器。
<div id="wrapper960" style="min-height:350px; border:1px red solid">
<div class="content-sidebar-l" style="min-height:250px; border:1px yellow solid"> </div>
<div class="content" style="min-height:250px; border:1px green solid"></div>
<div class="content-sidebar-r"style="min-height:250px; border:1px blue solid"></div>
</div>
这是中间 div 居中的 CSS。
#wrapper960 {margin:0 auto; padding:0; width:960px;}
.content-sidebar-l {
float: left;
width:170px;
margin:0;
padding:0;}
.content {
margin:0 auto;
padding:1em 0 0 0;
width:610px;
background-color:#fff;}
.content-sidebar-r {
float: right;
width:160px;
margin:0;
padding:0;}
(来源:imagesup.net)
这是在JSFiddle