tor-browser

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

outline-table-caption-ref.html (367B)


      1 <!DOCTYPE html>
      2 <style>
      3 table { outline: 1px solid blue; border-collapse: collapse; }
      4 .caption, .cell { width: 100px; height: 100px; padding: 0; text-align: left; vertical-align: top; }
      5 .caption { background-color: yellow; }
      6 .cell { background-color: lime; }
      7 </style>
      8 <table>
      9  <tr><td class="caption">Caption</td></tr>
     10  <tr><td class="cell">Cell</td></tr>
     11 </table>