Hola tengo un problema como hago para que la cabecera de la web se quede pegada arriba sin que haya hueco por que no consigo quitar el hueco y me gustaría saber que estoy haciendo mal, os dejo el css que estoy utilizando.
Código css:
Ver original#todo{
width:100%;
background-color:pink;
}
#contenedor{
height:100%;
margin-left:10%;
margin-right:10%;
background-color:red;
background:url(“1.jpg”);
background-repeat: repeat-y;
background-repeat: repeat-x;
}
#cabecera{
width:100%;
height:12%;
background-color:grey;
float:right;
font-size:70px;
}
#menu{
width:86.6%;
float:right;
background-color:pink;
position:relative;
text-align:center;
}
#panel{
border-radius: 15px;
height:140px;
background-color:blue;
width:19.3%;
position:fixed;
top:13.5%;
}
#contenido{
height:90%;
background-color:lime;
width:75%;
float:right;
}