En Chrome y FF, mi sitio se ve correctamente, pero en IE, ¡las barras laterales se ven por debajo del contenido!
Codigo HTML:
Código HTML:
Código CSS:Ver original
<div id="control"> <? if(isset($_COOKIE['MM_Username'])) { require("./modulos/control.php");} else { require("./modulos/controln.php"); }; ?> </div> <div id="cuerpo"> <br /> </p> <div id="menu"> <? require("./modulos/menu.php"); ?></div> <div class="curved" id="izquierda"> <? if(isset($_COOKIE['MM_Username'])) { require("./modulos/izquierda.php");} else { require("./modulos/izquierdan.php"); }; ?> </div> <div class="curved"id="derecha"> <? if(isset($_COOKIE['MM_Username'])) { require("./modulos/derecha.php");} else { require("./modulos/derechan.php"); }; ?> </div> <div id="contenido"><!-- TemplateBeginEditable name="contenido" --> <!-- TemplateEndEditable --></div> </div> </div>
Código CSS:
Ver original
<style type="text/css"> body,td,th { font-family: Verdana, Geneva, sans-serif; font-size: 12px; color: #FFF; } body { background-color: #333 !important; } a:link { color: #F00; font-weight: bold; text-decoration: underline; } a:visited { text-decoration: underline; } a:hover { text-decoration: none; } a:active { text-decoration: underline; } #global { width:1024px; margin:auto; background-color: #333; } #banner { float: left; width: 500px; height:110px; } #control { float:right; width:500px; height:110px; border: 1px dashed #F00; } #cuerpo { width: 1024px; margin:auto; } #contenido { width: 660px; margin-right: 150px; margin-left: 192px; } #copy { height: 20px; width: 1024px; background:#000; } #menu { height: 26px; width: 768px; border: 2px dotted #999; margin:auto; } #izquierda { float: left; width: 170px; background-color: #666; border: 1px solid #666; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 10px; height: 1000px; margin-top: 5px; } #derecha { float: right; width: 150px; background-color:#666; border: 1px solid #666; -moz-border-radius: 10px; -webkit-border-radius: 10px; padding: 10px; height: 1000px; margin-top: 5px; } .curved { -moz-border-radius: 15px; /* Firefox */ -webkit-border-radius: 15px; /* Safari and Chrome */ border-radius: 15px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */ behavior: url(border-radius.htc); /* This lets IE know to call the script on all elements which get the 'box' class */ } .titulo { text-align: left; } .contenido { } </style>
Solucioné el problema modificando los anchos, se ve que IE los interpreta un poco mal las posiciones..