CSS, a little off topic...
Hi
does anybody know why IE 6 and 7 (havent tested others) will not show the effects of this table header style (<th>table header here</th>), and if not, what about a work around.
Code:
th { background-image: url('images/stripe.gif'); background-repeat:repeat ; height: 50px }
It works fine with firefox.
I have concluded that Mozilla need a FAQ page for IE developers, they f*** things up...
Re: CSS, a little off topic...
I have tested this with IE 6 its working
Code:
<TABLE border="1" width="100%">
<TH style="background-image: url('lor39a.jpg'); background-repeat:repeat; height:50px">TABLE HEADING
HERE</TH>
<TR>
<TD>HELLO</TD>
</TABLE>
Re: CSS, a little off topic...
try nesting the selector th with the table tag and see what happens, like so:
table th {/*my style code*/}