246669-1.html (318B)
1 <!doctype html> 2 <html> 3 <head> 4 <style type="text/css"> 5 div { 6 display: table; 7 } 8 div div { 9 float: left; 10 width: 200px; 11 border: 2px solid #000; 12 } 13 </style> 14 </head> 15 <body> 16 <div> 17 <div>First float</div> 18 <script type="text/javascript">b=document.body.offsetHeight;</script> 19 <div>Second float</div> 20 </div> 21 </body> 22 </html>