floats-placement-005-ref.html (578B)
1 <!DOCTYPE html> 2 <style> 3 .float-left { 4 float: left; 5 clear: left; 6 width: 50px; 7 height: 50px; 8 background: green; 9 } 10 .float-right { 11 float: right; 12 clear: right; 13 width: 50px; 14 height: 50px; 15 background: green; 16 } 17 </style> 18 <div style="width: 150px; display: flow-root;"> 19 <div class="float-left"></div> 20 <div style="height: 40px;"></div> 21 <div class="float-right"></div> 22 <div class="float-left" style="width: 100px; height: 40px; background: cyan;"></div> 23 <div class="float-right"></div> 24 <div class="float-left"></div> 25 <div class="float-right"></div> 26 </div>