Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/04/2009, 05:07
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: Aumentar de tamaño fila y dejarlo permanente

Cita:
<!doctype html public "-//w3c//dtd xhtml 1.0 strict//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es-es" lang="es-es">
<head>
<title></title>
<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 td a {color: #ffffff;}
#listado td a:visited {display: Block; height:400px;line-height: 400px;outline: 0;}
#listado tbody tr td {
padding: 5px;
}
</style>
</head>
<body>
<table id="listado">
<tr id="cabecera">
<td><a href="#">hola1</a></td>
<td><a href="#">hola2</a></td>
</tr>
<tbody>
</tbody>
</table>
</body>
</html>