border-breaking-002-cols.xhtml 831 B

12345678910111213141516171819202122232425262728293031323334353637
  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>Pagination with Borders</title>
  5. <style type="text/css">
  6. .container {
  7. height: 0;
  8. border-bottom: 10px solid blue;
  9. }
  10. .overflow {
  11. height: 195px;
  12. border-bottom: solid 10px aqua;
  13. }
  14. .multicol {
  15. height: 200px;
  16. width: 300px;
  17. -moz-column-width: 150px;
  18. -moz-column-gap: 0;
  19. -moz-column-fill: auto;
  20. border: solid silver;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. There must be a continuous 10px line at the top
  26. of the gray box, the left half blue and the right
  27. half aqua.
  28. <div class="multicol">
  29. <div class="container">
  30. <div class="overflow">
  31. </div>
  32. </div>
  33. </div>
  34. </body>
  35. </html>