tor-browser

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

table-collapsed-borders-paint-htb-ltr.html (1027B)


      1 <!DOCTYPE html>
      2 <link rel="match" href="table-collapsed-borders-paint-htb-ltr-ref.html">
      3 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#fragmentation">
      4 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#rendering">
      5 <style>
      6 .multicol {
      7  inline-size: 400px;
      8  block-size: 100px;
      9  columns: 4;
     10  column-fill: auto;
     11  gap: 10px;
     12  padding: 10px;
     13  border: solid 3px;
     14 }
     15 </style>
     16 <div class="multicol">
     17  <table style="border-collapse: collapse; inline-size: 100%;">
     18    <caption style="background: dodgerblue; block-size: 120px;"></caption>
     19    <tbody>
     20      <tr style="block-size: 50px;">
     21        <td style="border: solid 10px lime;"></td>
     22      </tr>
     23      <tr style="block-size: 145px;">
     24        <td style="border: solid 10px;"></td>
     25      </tr>
     26    </tbody>
     27    <tbody>
     28      <tr style="block-size: 50px;">
     29        <td style="border: solid blue 10px;"></td>
     30      </tr>
     31      <tr style="block-size: 25px;">
     32        <td style="border: solid blue 10px;"></td>
     33      </tr>
     34    </tbody>
     35  </table>
     36 </div>