1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<html> <head> <style> body { height: 40px; column-count: 2; } #x { height: 20px; } #y { height: 80px; } </style> <script> function boom() { document.getElementById("x").style.content = "'0'"; } </script> </head> <body onload="boom();"><div id="x"><div id="y"></div></div></body> </html>