border-breaking-003-cols.ref.xhtml 702 B

1234567891011121314151617181920212223242526272829303132
  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. .container1 {
  7. border-top: 10px solid blue;
  8. }
  9. .container2 {
  10. border-top: solid 10px aqua;
  11. }
  12. .multicol {
  13. height: 200px;
  14. width: 300px;
  15. border: solid silver;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. There must be two continuous 10px lines at the top
  21. of the gray box, the top one blue and the bottom one
  22. aqua.
  23. <div class="multicol">
  24. <div class="container1">
  25. </div>
  26. <div class="container2">
  27. </div>
  28. </div>
  29. </body>
  30. </html>