Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/05/2013, 13:06
javiinet
 
Fecha de Ingreso: marzo-2012
Mensajes: 45
Antigüedad: 12 años, 1 mes
Puntos: 0
hover para todas las filas

Hola. No consigo entender porque solo consigo aplicar hover para la primera fila.
Ayuda, porfa.

Código:
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <style type="text/css">
        .cabecera {background-color:#C3C3CF}
        .lateral {background-color:#FF80B2}
        .par {background-color:#FFA6C9}
        .impar {background-color:#FFEDF4}
        table tr:hover{background: #99FFCC}
    </style>
</head>
    <body>
        <table border="1">
            <tr class="cabecera">
                <th align="center">Carácter</th>
                <th align="center">Decimal</th>
                <th align="center">Hexadecimal</th>                
            </tr>
            <tr>
                <th class="lateral" align="center">á</th>
                <td class="par" align="center">224</td>
                <td class="par" align="center">E0</td>
            </tr>
            <tr>
                <th class="lateral" align="center">é</th>
                <td class="impar" align="center">233</td>
                <td class="impar" align="center">E9</td>
            </tr>
        </table>    
    </body>
</html>
GRACIASSSS