Ver Mensaje Individual
  #9 (permalink)  
Antiguo 13/08/2012, 21:09
Avatar de flashmax
flashmax
 
Fecha de Ingreso: julio-2012
Ubicación: Bs.As. Argentina
Mensajes: 507
Antigüedad: 11 años, 9 meses
Puntos: 86
Respuesta: Columnas laterales, height 100%

Te dejo una segunda alternativa con tablas
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
			*{
				margin: 0;
				padding: 0;
			}
			body{
				background-color: #000;
			}
			.izquierda{
				width: 102px;
				height: 100%;
				background-color: green;
			}
			.derecha{
				width: 103px;
				height: 100%;
				background-color: green;
			}
			.centro{
				background-color:#666;
			}
			.imagen{
				padding: 100px;
				background-color: red;
			}
			#fullheight{height:100%;
			}
			html,body{
                margin:0;
                padding:0;
                height:100%;
                border:none
            }
</style>
</head>

<body><table id="fullheight" class="tabla" width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="izquierda">&nbsp;</td>
    <td align="center" valign="top"><table>
					<tr>
							<td class="imagen">
							</td>
					</tr>
                    					<tr>
							<td class="imagen">
							</td>
					</tr>
                    					<tr>
							<td class="imagen">
							</td>
					</tr>
                    					<tr>
							<td class="imagen">
							</td>
					</tr>
                    					<tr>
							<td class="imagen">
							</td>
					</tr>

				</table></td>
    <td class="derecha">&nbsp;</td>
  </tr>
</table>


</body> 
</html>