Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/03/2005, 12:17
fernandocomet
 
Fecha de Ingreso: octubre-2004
Ubicación: Entre Zaragoza y Madrid
Mensajes: 91
Antigüedad: 19 años, 6 meses
Puntos: 0
Problema con hoja de estilos externa

Entre otros en mi index:

Código:
<head>
<link href="estilos.css" rel="stylesheet" type="text/css" />
</head>

<div id="menu" ><img src="img/foto.jpg" width="46" height="31" /></div>
</body>
En la hoja de estilos externa:

Código:
body 	{
	background-image:  url(img/fondo.jpg);
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-repeat: no-repeat;
	}
#menu{
	position:absolute; 
	left:48px; 
	top:60; 
	width:691px; 
	height:30px; 
	z-index:1;
	}
Problema: Al editar(F12) la capa menu no aparece a la altura que le doy sino que se sitúa arriba del todo.
¿Qué está mal?