tor-browser

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

table-background-ref.html (845B)


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