tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

border-breaking-002-cols.ref.xhtml (795B)


      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      height: 190px;
      8      border-top: 10px solid blue;
      9    }
     10    .container2 {
     11      border-top: solid 10px aqua;
     12    }
     13 
     14    .multicol {
     15      height: 200px;
     16      width: 300px;
     17      column-width: 150px;
     18      column-gap: 0;
     19      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="container1">
     30    </div>
     31    <div class="container2">
     32    </div>
     33  </div>
     34 </body>
     35 </html>