fixed background in table

I am wondering if it's possible to have a fixed background inside a table using IE. I understand that you could stick the background inside the BODY tag of a style sheet, but this doesn't seem to work for me, probably because my tables are covering up the background. Does anyone know of a workaround? Thanks!<!--content-->use stylesheets to set the background into the table:<br />
<br />
table<br />
{<br />
background-image : url("image.jpg");<br />
background-attachment : fixed;<br />
}<!--content-->That was the first thing I tried, and it didn't work. After doing some research, I found that using background-attachment:fixed within a <TABLE> tag will not work in any version of Internet Explorer.<!--content-->how about using a DIV tag to hold the background?<br />
<br />
then put the table inside the DIV.<!--content-->
 
Back
Top