Is there a way to eliminate the black line that appears between my menu options when using CSS hover?
https://jsfiddle.net/jameskelly/3ejsu7gx/2/
a:hover {
background-color: #ebebeb;
font-color: black;
}
/* Custom styling for the navbar */
#navbar {
overflow: hidden;
background-color: #333;
text-align: center;
padding-top: 8px;
padding-bottom: 8px;
}
/* Styling for the navbar links */
#navbar a {
color: #f2f2f2;
text-align: center;
padding: 14px;
content-align: center;
}
#navbar current {
color: black;
text-align: center;
padding: 14px;
content-align: center;
background-color: #ebebeb;
}
#navbar a:hover {
color: black;
}
<div id="navbar">
<current href="index.html">Home</current>
<a href="about.html">About</a>
<a href="services.html">Services</a>
</div>