Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/06/2012, 11:06
Avatar de Azer
Azer
 
Fecha de Ingreso: abril-2012
Ubicación: Argentina
Mensajes: 13
Antigüedad: 12 años
Puntos: 0
Respuesta: Margin-bottom no se aprecia en IE.

Hola kseso, muchas gracias por responder. Lamentablemente no me funciono tu sugerencia, pero luego me di cuenta que la solución era tan simple como agregar el margin-bottom a mi .contenido y eliminando el float de mi .footer (de lo segundo me di cuenta simplemente probando, no lo deduje).

Mi código quedo así:
Código:
.cuerpo{
	width:1191px;
	margin:auto;
	position:relative;
}

.contenido{
	width:1221px;
	margin-bottom:10px;
}

.footer{
	width:914px;
	height:30px;
	background:#434d6e;
	overflow:hidden;
	border-radius: 0px 0px 10px 10px;
	border-left:1px solid #434d6e;
	border-right:1px solid #434d6e;
}
Porque crees que eliminando el float pude aplicar el margin-bottom? Gracias por tu tiempo.