I am extremly new to CSS's and i think i have a smiple quesiton. I want every other table row a different color - which i can do - but if there isn't a value in the td - then the row color stays white. Any ideas how to make that td a color when there is not value?
<tr>
<td>Name</td>
<td>Date</td>
</tr>
<tr>
<td>Jason</td>
<td></td>
</tr>
So - in the above example the second tr should be blue - but only the first td will be blue - the other td will be white...
Thanks
<tr>
<td>Name</td>
<td>Date</td>
</tr>
<tr>
<td>Jason</td>
<td></td>
</tr>
So - in the above example the second tr should be blue - but only the first td will be blue - the other td will be white...
Thanks