Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/04/2009, 15:41
xdunkelheitx
 
Fecha de Ingreso: enero-2009
Mensajes: 53
Antigüedad: 15 años, 3 meses
Puntos: 1
Aumentar de tamaño fila y dejarlo permanente

Hola quisiera saber como al hacer clic en una fila aumentar su tamaño pero que se quede estatico al hacerle click. Espero me ayuden.



Código HTML:
<html>
<head>
<style>
#listado {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
text-decoration: none;
border: none 0px solid;
border-collapse: collapse;

}

#listado tr#cabecera {
background:#000000;
color: #FFFFFF;
text-align: center;
}



#listado tbody tr:hover {
background:#FFFF00;
cursor: default;
}

#listado tbody tr:active {height:400px;}

#listado tbody tr td {
padding: 5px;
}

</style>
</head>

<body>
<table id="listado">
<tr id="cabecera">
<td>hola1</td>
<td>hola2</td>
</tr>

<tbody>
</tbody>
</table>

</body>
</html>