tor-browser

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

table-row-direction-ref.html (625B)


      1 <!DOCTYPE html>
      2 <title>Table row direction</title>
      3 
      4 <style>
      5  table {
      6    border-collapse: collapse;
      7  }
      8 
      9  td {
     10    border: 2px solid black;
     11    width: 20px;
     12    height: 20px;
     13  }
     14 
     15  td.special {
     16    border-left: 5px solid green;
     17    border-right: 5px solid blue;
     18  }
     19 </style>
     20 
     21 Normal table with LTR and RTL rows:
     22 <table>
     23  <tr>
     24    <td></td>
     25    <td class="special"></td>
     26  </tr>
     27  <tr>
     28    <td></td>
     29    <td class="special"></td>
     30  </tr>
     31 </table>
     32 
     33 <hr>
     34 
     35 RTL table with LTR and RTL rows:
     36 <table>
     37  <tr>
     38    <td class="special"></td>
     39    <td></td>
     40  </tr>
     41  <tr>
     42    <td class="special"></td>
     43    <td></td>
     44  </tr>
     45 </table>