Hola, sucede que luego de aplicarle a mi código los ajustes que se realizaron en el video, el color de fondo del Header se desconfiguró, quedó así:
Acá les comparto mi código:
header {
background-color: #BBBBBB;
padding: 20px;
}
.caja{
width: 940px;
position: relative;
margin: 0 auto;
}
nav {
position: absolute;
top: 110px;
right: 0;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}
Y mi HTML:
html>
<html>
<head>
<meta charset="UTF-8">
<title>Productos - Barbería Alura</title>
<link rel="stylesheet" href="productos.css">
<link rel="stylesheet" href="reset.css">
</head>
<body>
<header div class="caja">
<div>
<h1> <img src="imagenes/logo.png"> </h1>
<nav>
<ul class="navegacion">
<li><a href="HTML 1/index.html"> Home</a></li>
<li><a href="productos.html"> Productos</a></li>
<li><a href="contacto.html"> Contacto</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>