I have a table with a background image using css property background-image. In table I have some images using the <img
. Images <img
table are above the background image. I would like the background image overwrite the images <img
as with the text. Is that possible?
Code Example:
<style>
#content { background-image:url("background-image.jpg"); background-repeat:repeat-y}
</style>
<table id="content">
<tr>
<td>Some text.....text.....text
Image: <img src="quadrado.jpg" />
</td>
</tr>
</table>