tor-browser

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

border-conflict-resolution-ref.html (688B)


      1 <!doctype html>
      2 <title>CSS Test Reference</title>
      3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      4 <link rel="author" href="https://mozilla.org" title="Mozilla">
      5 <style>
      6  table {
      7    font-size: 2em;
      8    border-collapse: collapse;
      9    border: 5px solid green;
     10  }
     11 </style>
     12 
     13 <p>You should see no non-solid borders and no red.</p>
     14 
     15 <table>
     16  <tr>
     17    <td colspan="4" style="border: 5px solid purple;">hello</td>
     18  </tr>
     19  <tr>
     20    <td style="border-right: 5px solid blue; border-bottom: 9px hidden red;">one</td>
     21    <td style="border-right: 5px solid blue;">two</td>
     22    <td>three</td>
     23    <td style="border-left: 5px solid blue">four</td>
     24  </tr>
     25 </table>