Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...
<style type="text/css">
td.WithImage {
background-image: url('myimage.gif');
}
</style>
...
<table>
...some <tr>s
<tr>
...some <td>s
<td class="WithImage">
<table>
...stuff
<table>
</td>
...more <td>s
<tr>
...more <tr>s
</table>
...
<style type="text/css">
td.WithImage {
background-image: url('myimage.gif');
background-repeat: no-repeat;
/* and, optionally */
background-attachment: fixed;
background-position: top left;
}
</style>
...
<table>
...some <tr>s
<tr>
...some <td>s
<td class="WithImage">
<table>
...stuff
<table>
</td>
...more <td>s
<tr>
...more <tr>s
</table>