Forum Moderators: not2easy

Message Too Old, No Replies

td's within table not inheriting CSS class

am i doing something wrong?

         

javahava

5:25 am on Apr 11, 2006 (gmt 0)

10+ Year Member



i have something like this:

<td class="x" >
<table>
<TR><TD >text</TD></TR>
</TABLE>
</td>

However, the text within the table does not seem to be inheriting the properties of class x. Is there a way I can force this through the style sheet? I've made this change throughout the files of my site, and am hoping for a neat solution? Thanks!

Setek

6:13 am on Apr 11, 2006 (gmt 0)

10+ Year Member




td.class { property: value; }
td.class table tr td { property: value; }

That will "inherit" what you need.

javahava

7:12 am on Apr 11, 2006 (gmt 0)

10+ Year Member



wonderful; thanks for the help!