Ver Mensaje Individual
  #5 (permalink)  
Antiguo 08/04/2008, 04:13
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
Re: Capa por detras de tabla

¿Algo así?

Cita:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="es-es">
<head>
<title>Tabla</title>
<style type="text/css">
* { margin: 0px;
padding: 0px;
}
#franja { width: 100%;
background-color: rgb(255, 0, 0);
margin-top: -100px;
z-index: 1;
position: relative;
height: 50px;
}
table { margin: 0px auto;
z-index: 10;
position: relative;
}
</style>
</head>
<body>
<table align="center" bgcolor="white" border="1" cellpadding="10" cellspacing="0" width="500">
<tbody>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
<tr>
<td align="center">Texto de relleno</td>
</tr>
</tbody>
</table>
<div id="franja"></div>
</body>
</html>
Mikel.