Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/04/2005, 09:11
chusete
 
Fecha de Ingreso: julio-2003
Mensajes: 437
Antigüedad: 20 años, 9 meses
Puntos: 0
he estado probando el codigo que venia en una faq respecto a la alineacion vertical

<style type="text/css">
#outer {height: 400px; overflow: hidden; position: relative;}
#outer[id] {display: table; position: static;}

#middle {position: absolute; top: 50%;} /* for explorer only*/
#middle[id] {display: table-cell; vertical-align: middle; position: static;}

#inner {position: relative; top: -50%} /* for explorer only */
/* optional: #inner[id] {position: static;} */
</style>,

sin embargo, no da el mismo resultado en explorer que en mozilla.

por que no funciona el display:table o display:tabla-cell en el explorer?