mise en page d'un tableau sous IE 7
bonjour,
j'ai un tableau dont certaines lignes sont dans la class "RowsEnb". ex:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr class="RowsEnb">
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr> |
voici mon css :
Code:
1 2 3 4 5
| .RowsEnb td
{
color: rgb(160,160,160);
background-color: rgb(245,245,245);
} |
ou
Code:
1 2 3 4 5
| .RowsEnb
{
color: rgb(160,160,160);
background-color: rgb(245,245,245);
} |
=> ça ne fait rien sous IE7 (par contre ça marche sous firefox) : que faire ?