Discussion board
Image as background in a table
By Mohan Naayan
How I can insert an image as background in a table?
Reply
Post   Reset
Bikash Kumar Singh replied to Mohan Naayan Saturday, August 29, 2009
the background attribue in table tag works. you can check the following code
<html>
<head><title>Background Image></title></head>
<body>
<table width=400 height=400 background="<path to your image file">
<tr><td>&nbsp;</td></tr>
</table>
</body>
</html>