I have a CSS class that Mozilla won't recognize. The styles work when I put them inline like this:
However, it doesn't work when I implement it this way:
Does anyone know what in sam hell is going on here? I'm starting to lose my faith in Mozilla...
Code:
<table>
<tr>
<td style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px;line-height:16px;font-weight:bold;color:#DED9E6;padding-top:5px;padding-right:8px;padding-bottom:5px;padding-left:12px;">text here</td>
</tr>
</table>
However, it doesn't work when I implement it this way:
Code:
<style type="text/css">
.2005myp_adcopy {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
line-height:16px;
font-weight:bold;
color:#DED9E6;
padding-top:5px;
padding-right:8px;
padding-bottom:5px;
padding-left:12px;
}
</style>
<table>
<tr>
<td class="2005myp_adcopy">text here</td>
</tr>
</table>
Does anyone know what in sam hell is going on here? I'm starting to lose my faith in Mozilla...