Ver Mensaje Individual
  #7 (permalink)  
Antiguo 20/09/2009, 09:44
Avatar de deirdre
deirdre
 
Fecha de Ingreso: mayo-2009
Mensajes: 690
Antigüedad: 15 años
Puntos: 45
Respuesta: Crear una pagina estandar para todos los navegadores y resoluciones

No será que no tienes declarado un doctype. Sin doctype no funciona en iexplorer 7 ni 8. Con doctype sí funciona, pero de todas formas en iexplorer 6 no funciona la propiedad fixed.

Tu código con doctype (funcionando en ie7 y 8):

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Barra de usuario</title>
<style type="text/css">
.barra_usuario{
	width:90%;
	height:2%;
	background-color:#5b5b5b;
	padding:5px;
	position: fixed;
	bottom: 0;
	left: 4%;
	border-style:solid;
	border-width:1px;
	border-bottom: 0px;
	border-color:#000000;
	overflow: hidden;
}
</style>
</head>

<body>
<div class="barra_usuario">Barra de usuario</div>
</body>

</html> 
Para que funcione en ie6 tienes que buscar un hack.

Bye