1
.float1 { float: left; width: 50%; height: 50%; } .float2 { float: right; width: 50%; height: 50%; } .float3 { float: left; width: 50%; height: 50%; } .float4 { float: right; width: 50%; height: 50%; } .clear { clear: both; }
HTML:
<div class="float1">Float 1</div> <div class="float2">Float 2</div> <div class="clear"></div> <div class="float3">Float 3</div> <div class="float4">Float 4</div> <div class="clear"></div>
我想這樣的形象輸出:
CSS的float聲明
請糾正我的CSS代碼。 謝謝。
如果FLOAT3是兩個明確的,怎麼會FLOAT4是正確的旁邊? – 2010-04-30 18:58:36
@Matt:'clear'影響前面的元素,而不是後面的元素。 – 2010-04-30 19:04:18
我喜歡重構的CSS,與上面提到的不同。但我常常懷疑使用高度或寬度。 – phoenix24 2010-04-30 19:28:30