1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<html> <head> <script> function boom() { document.getElementById("a").style.clear = "right"; } </script> </head> <body onload="boom();"> <div style="display: table;"> <div id="a">a</div> <div id="b" style="height: 18000000px;">b</div> <div id="c">c c c</div> </div> </body> </html>