PDA

View Full Version : background within a table


duniyadnd
03-04-2003, 03:47 PM
I got a table which is divided into multiple cells (two columns, 6 rows).

However, I want to use an image that would be the background in the whole table. Besides slicing the image and putting them in individually, is there any way of doing it?

Thanks
Duniyadnd

beetle
03-04-2003, 04:00 PM
<style>
table#whatever {
background-image: url(path/to/image.jpg);
}
</style>

...

<table id="whatever">
...
</table>

duniyadnd
03-05-2003, 04:50 PM
Thanks, that worked...

Duniyadnd