border-breaking-000-cols.xhtml 832 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>Pagination with Borders</title>
  5. <style type="text/css">
  6. .container {
  7. padding-bottom: 10px;
  8. border-bottom: 10px solid transparent;
  9. }
  10. .box {
  11. background: green;
  12. }
  13. p {
  14. font-size: 150px;
  15. line-height: 1;
  16. margin: 0;
  17. }
  18. p + p {
  19. height: 200px;
  20. }
  21. body {
  22. height: 200px;
  23. width: 300px;
  24. -moz-column-width: 150px;
  25. -moz-column-gap: 0;
  26. -moz-column-fill: auto;
  27. border: solid silver;
  28. border-style: none solid;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="container">
  34. <div class="box">
  35. <p>&nbsp;</p>
  36. <p>&nbsp;</p>
  37. </div>
  38. </div>
  39. </body>
  40. </html>