20/02/2007, 06:25
|
| 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 Poderse sí que se puede, pero siempre hay que ver el caso concreto y las peculiaridades de los contenidos, etc.
Prueba con esto:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<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;
height: 100%;
min-width:1010px;
width:expression(document.body.clientWidth < 1010? "1010px": "auto" );
}
#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);
height: 100%;
width: 110px;
}
#content { border: 0pt none ;
margin: 0pt;
padding: 0pt;
height: 500px;
background-color: rgb(0, 153, 0);
}
</style>
</head>
<body>
<div id="web">
<div id="back_left"></div>
<div id="back_right"></div>
<div id="content">nadgnadg
</div>
</div>
</body>
</html>
A ver qué tal.
Mikel. |