tor-browser

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

table-background-print-ref.html (1003B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <style>
      4  :root {
      5    print-color-adjust: exact;
      6  }
      7 </style>
      8 <body>
      9 <table style="background-image: url('resources/aqua-yellow-32x32.png')">
     10  <thead style="background-image: url('resources/blue-16x20-green-16x20.png')">
     11    <tr>
     12      <td>
     13        Foo
     14      </td>
     15      <td style="background-image: url('resources/yellow-32x32.png')">
     16        Bar
     17      </td>
     18    </tr>
     19  </thead>
     20  <tbody style="background-image: url('resources/red-32x32.png')">
     21    <tr>
     22      <th style="background-image: url('resources/fuchsia-32x32.png')">
     23        Foo
     24      </th>
     25      <th>
     26        Bar
     27      </th>
     28    </tr>
     29    <tr style="background-image: url('resources/fuchsia-32x32.png')">
     30      <td>
     31        Foo
     32      </td>
     33      <td style="background-image: url('resources/yellow-32x32.png')">
     34        Bar
     35      </td>
     36    </tr>
     37  </tbody>
     38  <tfoot style="background-image: url('resources/yellow-32x32.png')">
     39    <tr>
     40      <td>
     41        Baz
     42      </td>
     43    </tr>
     44  </tfoot>
     45 </table>
     46 </body>
     47 </html>