I have a statement like
<tr>
<td colspan="3" class="color1"> </td>
<td colspan="2" class="color2"> </td>
</tr>
in my page and i have a stylesheet defined as
<style type="text/css">
.color1
{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
background-color: #F8DA31;
vertical-align: middle
}
.color2
{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
background-color: #1C37C2;
vertical-align: middle
}
</style>
i see the background color for color2 but I cannot see the background color for color1 (#F8DA31)..can anybody say why so?.... is it that if i have to similar patterns in stylesheet, for diffrent backgrounds, only one gets shown?
ashay