El tema es que en IE el div alrededor crece a medida que crece el div izquierda, pero en FF no crece alrededor ¿por qué?
Código:
Gracias desde yá por las respuestas.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Prueba</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#alrededor
{
background-color:#009900;
height:auto;
margin-left:auto;
margin-right:auto;
width:960px;
position:relative;
}
#izquierda {
background-color:#F8F8F8;
width:260px;
height:100%;
float:left;
}
#derecha {
background-color:#F8F8F8;
width:700px;
height:100%;
float:left;
}
-->
</style>
</head>
<div id="alrededor">
<div id="izquierda">
<p>izquierda</p>
<p>izquierda</p>
</div>
<div id="derecha">
<p>derecha</p>
</div>
</div>
<body>
</body>
</html>
Saludos


