Forum Moderators: open
I have a table cell containing an <h3> element. Styled like this:
td.myclass h3 { font-size: 90%; }
In IE 5, IE 5.5 the font-size property is not applied. In IE 6 it is. I've tried taking out the class from the selector, and putting in a fuller context ( table td h3) but nothing.
However IE 5.0 displays the font-size change no problem (as standalone test).
You did not post your HTML. I used:
CSS:
td.myclass h3 { font-size: 90%; }
HTML:
<table>
<tr>
<td>This is one</td>
<td class="myclass"><h3>This is test</h3></td>
<td>This is three</td>
</tr>
</table>
I also changed the CSS font-size to 50% and to 150% and IE 5.0 had no difficulty.