Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/02/2008, 00:08
resu
 
Fecha de Ingreso: mayo-2006
Ubicación: Argentina (Buenos Aires,CABALLITO)
Mensajes: 331
Antigüedad: 17 años, 11 meses
Puntos: 9
Web se ve bien en firefox pero casi nada en internet explorer

Hola,antes que nada,estoy haciendo el paso de tablas a css,suplico conpasion :$
Tengo el siguiente index:

Cita:
<head>
<link href="images/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="contenedor">
<div id="left"</div>
<div id="right"></div>
<div id="center"></div>
</div>
</body>
y style.css:

Cita:
body {
background-image: url(back.jpg);
}
#contenedor{
width: 950px;
margin:0 auto;
}
#left{
float:left;
width: 35px;
height: 100%;
background: url('left.png') top center repeat-y ;
}
#center{
float:none;
height:100%;
background: #ffffff top center repeat-y;
}
#right{
float:right;
width: 35px;
height: 100%;
background: url('right.png') top center repeat-y ;
}
La cuestion es que en firefox se ve bien,pero en internet explorer 6 se ve absolutamente todo deformado.

Otra cosa,Si pongo div left,luego center y luego el right,se me ve mal,pero si pongo left-right-center se ve bien.Porque?

gracias!