Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/02/2007, 20:20
axterixv
 
Fecha de Ingreso: febrero-2007
Mensajes: 53
Antigüedad: 17 años, 2 meses
Puntos: 1
display:table-cell: como consigo que funcione en IE

Hola, estoy tratando de usar la propiedad display:table-cell, para colocar un texto en una posición especifica de un div, pero por alguna razón IE no me da alguna idea?

p.d: probee la solución del faq:
h t t p : // www .forosdelweb.com/showpost.php?p=967310&postcount=50
y no quiso funcionar :(

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="h t t p : //www . w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Posicionamiento</title>
<style type="text/css">
#cabecera{display:table; width:300px; height:150px; background:red; margin:auto;}
#cabecera div{display: table-cell; vertical-align: bottom; text-align:right;}
</style>
</head>
<body>
<div id="cabecera">
<div>Texto a centrar</div>
</div>

Última edición por axterixv; 21/02/2007 a las 20:32 Razón: actualizado