![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
14/04/2008, 16:39
|
![Avatar de Mikmoro](http://static.forosdelweb.com/customavatars/avatar153985_1.gif) | Colaborador | | Fecha de Ingreso: octubre-2006 Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 18 años, 4 meses Puntos: 280 | |
Re: Div desalineada en IE6 Hola, Marcos071.
El problema lo tienes en este selector:
.propied {
width:600px;
padding-left:10px;
padding-right:10px; margin:0 175px;
}
Le estás marcando innecesariamente el margen izquierdo y derecho.
Cámbialo por este otro:
.propied {
width:600px;
padding-left:10px;
padding-right:10px; margin:0 0 0 175px;
}
Mikel. |