<style>.clearfix:after{ content:"."; display:block; height:0px; line-height:0px; clear:both; visibility:hidden; font-size:0px; }.clearfix{*zoom:1;}</style><div style="width:950px;"><div style="width:190px; height:50px;">1</div><div style="width:190px; height:100px;">2</div><div style="width:190px; height:200px;">3</div><div style="width:190px; height:50px;">4</div><div style="width:190px; height:100px;">5</div><div class="clearfix"></div><div style="width:190px; height:100px;">6</div></div>
楼主,你代码里没有使用浮动啊,为什么要清除浮动?
如果只是要实现6排在1的下面,下面的代码可以:
<!DOCTYPE html><html><head><title></title><style> .container{ position:relative; } .container div{float:left; border:1px solid; } #inner6{position:absolute;left:0;top:50px;}</style> </head><body><div class="container" style="width:950px;"><div style="width:190px; height:50px;">1</div><div style="width:190px; height:100px;">2</div><div style="width:190px; height:200px;">3</div><div style="width:190px; height:50px;">4</div><div style="width:190px; height:100px;">5</div><div class="clearfix"></div><div id="inner6" style="width:190px; height:100px;">6</div></div></body></html>
楼主,你代码里没有使用浮动啊,为什么要清除浮动?
如果只是要实现6排在1的下面,下面的代码可以:
XML/HTML code?123456789101112131415161718192021nbsp;html>