Reputation: 107
this is my first question here so my apologies if this has been answer somewhere else, I could't find any related entry.
Basically I have an horizontal list that has some dashes between the elements. How do I target and remove these dashes?
here is the code: http://fiddle.jshell.net/5rbkbm5w/1/
Upvotes: 1
Views: 117
Reputation: 14984
Your <a>
tags are not closed, causing white space to be underlined, thus showing the underline for seemingly no reason.
Close your tags:
<li><a href="#">Maps</a>
</li>
Upvotes: 2