Cita:
Iniciado por jesusbet por cierto Sir. Carajodida, tu web va bien en Firefox, en IE va muy lenta la carga...
saludos
a que te refieres con eso? hay algo que se pueda hacer?
no va eso de posicion relativa, aca hice un pequeño ejemplo para probar, como harian para que las 2 columnas vayan hasta el foot?
Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
#main {
width:800px;
border:1px solid #000000;
padding:0px;
margin:0px auto;
}
#izq {
width:150px; /* 156 */
height:100%;
border:1px solid #000000;
padding:0px;
margin:4px 0px 0px 4px;
* margin:4px 0px 4px 2px; /* hack ie */
float:left;
position:relative;
}
#der {
width:150px; /* 156 */
border:1px solid #000000;
padding:0px;
margin:4px 4px 0px 0px;
* margin:4px 2px 4px 0px; /* hack ie */
float:right;
position:relative;
}
#centro {
border:1px solid #000000;
padding:0px;
margin:4px 160px 0px 160px;
}
#foot {
border:1px solid #000000;
padding:0px;
margin:4px 4px 4px 4px;
clear:both;
text-align:center;
}
</style>
</head>
<body>
<div id="main">
<div id="izq"><p>Testing</p><p>Testing</p><p>Testing</p><p>Testing</p></div>
<div id="der"><p>Testing</p><p>Testing</p><p>Testing</p><p>Testing</p></div>
<div id="centro"><p>Testing</p><p>Testing</p><p>Testing</p><p>Testing</p><p>Testing</p><p>Testing</p></div>
<div id="foot"><p>Testing</p><p>Testing</p></div>
</div>
</body>
</html>