I have a backgrund image for a cell in a table. However, I only want this background image to appear once. How can I do this?
Printable View
I have a backgrund image for a cell in a table. However, I only want this background image to appear once. How can I do this?
You could use CSS:
You can add positioning too:Code:<td style="background: transparent url('FILENAME.png') no-repeat;">...
etc.Code:<td style="background: transparent url('FILENAME.png') no-repeat top left;">...
<td style="background: transparent url('FILENAME.png') no-repeat bottom right;">...
<td style="background: transparent url('FILENAME.png') no-repeat top center;">...