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?