6

为什么蓝色 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">&nbsp;</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;}

蓝色 div 浮动右侧问题
(来源:imagesup.net

这是在JSFiddle

4

2 回答 2

4

将您的 HTML 重新排序为:

<div id="wrapper960"  style="min-height:350px; border:1px red solid">
<div class="content-sidebar-r"style="min-height:250px; border:1px black solid"></div>
<div class="content-sidebar-l" style="min-height:250px; border:1px yellow solid">&nbsp;</div>
<div class="content" style="min-height:250px; border:1px green solid"></div>
</div>​

jsFiddle 示例

您需要首先将侧边栏浮动到右侧,否则通过将其放在最后,它不能在它之前浮动的元素上方浮动。

于 2012-12-18T17:15:35.260 回答
1

您没有代码可以让蓝色 div 在绿色 div 旁边冒泡。

例如

.content { float: left; }
于 2012-12-18T17:16:47.727 回答