20/02/2007, 05:23
|
| Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 1 mes Puntos: 280 | |
Re: problema 3 columnas Prueba con este código, a ver si te sirve para lo que quieres;
Código:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Web</title>
<style type="text/css">
* { border: 0pt none ;
margin: 0pt;
padding: 0pt;
}
html, body { height: 100%;
width:100%;
}
#web { border: 0pt none ;
margin: 0pt;
padding: 0pt;
min-width:800px;
width:expression(document.body.clientWidth < 790? "790px": "auto" );
height: 100%;
}
#back_left { border: 0pt none ;
margin: 0pt;
padding: 0pt;
height: 100%;
float: left;
background-color: rgb(255, 0, 0);
width: 110px;
}
#back_right { border: 0pt none ;
margin: 0pt;
padding: 0pt;
float: right;
background-color: rgb(255, 0, 0);
width: 110px;
height: 100%;
}
#content { border: 0pt none ;
margin: 0pt;
padding: 0pt;
min-width: 790px;
height: 500px;
float: left;
}
</style>
</head>
<body>
<div id="web">
<div id="back_left"></div>
<div id="back_right"></div>
<div id="content">
</div>
</div>
</body>
</html>
Mikel. |