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>