tor-browser

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

col-paint-htb-rtl.html (545B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#drawing-cell-backgrounds">
      3 <link rel="match" href="col-paint-htb-rtl-ref.html">
      4 <style>
      5 table { border: solid 2px; border-spacing: 5px; padding: 5px; }
      6 col { background: linear-gradient(60deg, red 50%, blue 50%); }
      7 </style>
      8 <table style="direction: rtl;">
      9  <col style="width: 100px;"></col>
     10  <col style="width: 50px;"></col>
     11  <tr style="height: 100px;">
     12    <td></td>
     13    <td></td>
     14  </tr>
     15  <tr style="height: 50px;">
     16    <td></td>
     17    <td></td>
     18  </tr>
     19 </table>