Bueno la verdad no entiendo, el codigo parece estar bien pero solo funciona en internet explorer y en firefox no.
Como pueden ver.. yo lo que hize es dentro de una tabla que esta en centro, llamar un div de color azul.. en explorer se ve bien y en firefox no..
Aca les dejo el Codigo para que ustedes mismo hagan una prueba..
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>en Internet Explorer Funciona - en Firefox no</title>
<style type="text/css">
.tabla {
position:absolute;
left:25%;
/*Medidas de tabla*/
width:800px;
height:600px;
border:1px solid #000;
}
/* Aca va un Div ID */
#gris {
position:absolute;
left:0px;
top:0px;
/* medidas del div visible y color */
width:100px;
height:100px;
background:#000066;
}
</style>
</head>
<body>
<table class="tabla">
<tr>
<th scope="col">
<div id="gris">Rarisimo No?</div>
</th>
</tr>
</table>
</body>
</html>