393956-1.html 289 B

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