Espero con esto poder ser de ayuda pára todas aquellas personas que necesiten solventar este problema, a pesar de que FLASHMAX, fue quien me ayudo a resolver este problema y a qiuen le estoy muy agradecido. Note que en mi computadora se veia de una forma (solo lo veia bien en IE9) y en otra conputadora se veia correctamente en los otros exploradores, total me puse a investigar en la red y consegui un modelo de 3 divs en posición relative, los cuales al poner la altura en AUTO, me respeta los margenes en los 3 exploradores antes mencionados y se muestra bien en ambas computadoras. Soy nuevo en esto y no creo haber hecho ningun descubrimiento, pero para todos aquellos que tengan este problema espero que este post les sirva de ayuda.
Les dejo el codigo:
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">
body {
background-image: url(images/top-degra.jpg);
background-repeat: repeat-x;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
#bartop { position:absolute;
left:0px;
top:0px;
width:100%;
height:40px;
z-index:1;
background-image: url(images/fondobarredes.png);
-moz-box-shadow:0px 0px 5px #000;
-ms-box-shadow:0px 0px 5px #000;
-webkit-box-shadow:0px 0px 5px #000;
box-shadow: 0px 0px 5px #000;
behavior: url(PIE/pie.htc);
}
#back {
position:absolute;
left:0px;
top:0px;
width:973px;
height:422px;
z-index:2;
background-image: url(images/top-mot-degra.png);
}
#logo { position:absolute;
left:50%;
top:53px;
width:900px;
height:62px;
z-index:3;
margin-left: -450px;
}
#derecha {
position:absolute;
z-index:200;
width:177px;
left: 10;
margin-left: 10px;
margin-top: 10px;
height: 442px;
background-color: #999999;
}
#izquierda {
position:relative;
left:219px;
z-index:100;
width:650px;
/* [disabled]padding:40px 0px 0px 0px; */
height: auto;
font-family: "Century Gothic", Arial, "Trebuchet MS";
font-size: 14px;
text-align: justify;
top: 10px;
background-color: #009999;
}
#principal {
position:relative;
border:4px solid #FF0000;
width:900px;
height: auto;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
border: solid 1px #acadad;
margin-top: 125px;
margin-right: auto;
margin-bottom: 10px;
margin-left: auto;
}
#pie {
width: 900px;
height: 20px;
margin-right: auto;
margin-left: auto;
font-family: "Century Gothic", Arial, "Trebuchet MS";
font-size: 12px;
text-align: center;
background-color: #FC0;
}
.titbold {font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
}
</style>
<script type="text/javascript">
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
</script>
</head>
<body>
<div id="principal">
<div id="derecha"><img src="images/interbot.png" width="177" height="1" />
<p> </p>
<p align="center">BOTONERA</p>
<p align="center"> </p>
<p align="center"> </p>
</div>
<div id="izquierda">
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
<p>contenido</p>
</div>
</div>
<div id="pie">PIE DE PAGINA</div>
</body>
</html>