tor-browser

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

row-background-paint-remove-last-cell-ref.html (358B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <style>
      4 tr { background-color: rgb(255, 0, 0); }
      5 td:not(#remove) { background-color: green; }
      6 </style>
      7 <title>CSS Test Reference</title>
      8 <p>Test passes if you see three green cells and no red below.</p>
      9 <table>
     10    <tr>
     11        <td>A1</td>
     12        <td>A2</td>
     13    </tr>
     14    <tr>
     15        <td>B1</td>
     16    </tr>
     17 </table>
     18 </html>