Whenever I hover over the text in the navigation bar, the space above the text is highlighted instead of the text itself. This issue could be related to my CSS code:
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: silver;
}
li a {
display: block;
padding: 8px 16px;
text-decoration: none;
}
/* Changing the link color on hover */
li a:hover {
background-color: #555;
color: white;
}
Let's take a look at my HTML code:
<ul>
<li><a href=""></a> Home</li>
<li><a href=""></a>Contact</li>
<li> <a href=""></a>Gallery</li>
</ul>