1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html> <html> <head> <script> function boom() { document.getElementById("k").style.display = "-moz-inline-box"; } </script> <body onload="boom();"> <div style="display: table;"><div id="k" style="height: 18000000px;">x</div></div> </body> </html>