content-inserted-008.xhtml 811 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Content Appended in Pagination before ::after</title>
  5. <style type="text/css">
  6. body {
  7. font-size: 16px;
  8. }
  9. #colset {
  10. height: 200px;
  11. width: 450px;
  12. -moz-column-width: 150px;
  13. -moz-column-gap: 0;
  14. border: 3px solid silver;
  15. }
  16. #shift {
  17. height: 0;
  18. }
  19. #overflow {
  20. height: 500px;
  21. }
  22. </style>
  23. </head>
  24. <body onload="document.getElementById('colset').insertBefore(document.createTextNode('This must be in the first column.'), document.getElementById('x'))">
  25. <div id="colset">
  26. <div id="shift">
  27. <div id="overflow"></div>
  28. </div
  29. ><div id="x">
  30. </div>
  31. </div>
  32. </body>
  33. </html>