I've been trying to set a background color for my navbar and somehow my code isn't working. Here's the HTML & CSS used:
ul {
list-style-type: none;
margin: 0;
padding: 0;
background-color: red;
}
li {
float: right;
}
a {
display: block;
padding: 8px;
}
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
I also tried adding background-color property to a nav selector.