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>