content-inserted-005.xhtml 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 after ::before</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. -moz-column-fill: auto;
  15. border: 3px solid silver;
  16. }
  17. #x {
  18. border-bottom: 4px solid blue;
  19. }
  20. #x:before {
  21. display: block;
  22. height: 201px;
  23. content: "";
  24. border-bottom: 4px solid blue;
  25. }
  26. </style>
  27. </head>
  28. <body onload="document.getElementById('x').insertBefore(document.createTextNode('This must be in the second column between two 4px blue lines.'), null)">
  29. <div id="colset">
  30. <div id="x">
  31. </div>
  32. </div>
  33. </body>
  34. </html>