1001258-1.html (712B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 .r { 7 display: inline-block; 8 width: 40px; 9 height: 40px; 10 } 11 12 </style> 13 </head> 14 15 <body onload="document.getElementById('willFloatLeft').style.cssFloat = 'left';"> 16 <div style="width: 100px; background: lightgray;"> 17 <div class="r" style="background: red; width: 10px; float: left;"></div> 18 <div class="r" style="background: violet; width: 120px;" id="willFloatLeft" ></div> 19 <div style="clear: left;"></div> 20 <div class="r" style="background: blue;"></div> 21 <div class="r" style="background: yellow; float: right;"></div> 22 <div class="r" style="background: orange; position: relative;"></div> 23 </div> 24 </body> 25 26 </html>