border-breaking-001-cols.ref.xhtml 807 B

123456789101112131415161718192021222324252627282930313233343536373839
  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: 500px;
  8. background: lime;
  9. border: 10px green;
  10. border-style: none solid;
  11. }
  12. .long {
  13. background: aqua;
  14. width: 40px;
  15. height: 500px;
  16. }
  17. .body {
  18. height: 200px;
  19. width: 300px;
  20. -moz-column-width: 100px;
  21. -moz-column-gap: 0;
  22. -moz-column-fill: auto;
  23. border: solid silver;
  24. border-style: none solid;
  25. background: yellow;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="body">
  31. <div class="container">
  32. <div class="long">
  33. </div>
  34. </div>
  35. </div>
  36. </body>
  37. </html>