在此示例中是否可以刪除樓梯效果?我有一個div向右浮動,幾個div固定高度,固定寬度向左浮動。如果div遇到某處,我會得到一個相當奇怪的樓梯效果。在此示例中刪除樓梯
我知道爲什麼發生這種情況,我得到它,但即時通訊尋找一種解決方案,以避免這種情況。請幫我
<div class="container">
<div class="fright">just some contents floating right</div>
<div class="fleft">a div</div>
<div class="fleft">
this one is the problem.
Is it possible to have this div start at position B
</div>
<div class="fleft"><b>Position B</b></div>
<div class="fleft">a div</div>
</div>
和CSS
div{
margin:10px;
padding:10px;
.container{
width:460px;
float:left;
}
.fright{
float:right;
border:1px solid green;
}
.fleft{
float:left;
height:180px;
width:180px;
border:1px solid orange;
}
你可以讓你想怎麼轉出的例子嗎? –