Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/11/2007, 08:29
macaco
 
Fecha de Ingreso: agosto-2003
Mensajes: 120
Antigüedad: 20 años, 7 meses
Puntos: 0
Problema con IE7

Alguno me puede decir que pasa con esta pagina en IE7? EN Firefox y en IE6 se ve bien.

Al cargarla, el div principal no se ve hasta que se hace click sobre algun link:
http://www.design-on.com.ar/alkanos/...=representadas

Código:
#main{
	*height:100%;
	background: #FFFFFF url(img/tramas_main.png) no-repeat center left;
	margin: 0px 20px;
	overflow: hidden;
	behavior: url(iepngfix.htc);
	min-height:0px;
}
#menuV{
 	background: url(img/main_left.gif) repeat-y top left;
	float:left;
	width: 25%;
	padding-bottom: 10000px !important;
	margin-bottom: -10000px !important;
	margin: 0px;
	padding: 0px 0px 0px 17px;
	min-height:0px;
}
#principal{
 	background: url(img/main_right.gif) repeat-y top right;
	float:right;
	width: 70%;
	text-align: left;
	font: 8pt Verdana, sans-serif;
	padding: 3px 10px 10000px 0px !important;
	margin-bottom: -10000px !important;
	*width: 65%;
	padding: 3px 10px 0px 0px;
	margin-bottom: 0px;
	min-height:0px;
}
menuV y principal estan flotando dentro de main.
main y principal tienen clearfix:

Código:
.clearfix:after {
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
.clearfix {
 	display:inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
 	height: 1%;
 	display:block;
}
/* End hide from IE-mac */
Muchas Gracias!