Is there a way to have the border show up only on the top when hovering over it? Here's the current code I'm using:
a:hover {
border-top: 3px white;
border-style: solid;
}
Even though this code is in place, the border still appears on all sides. I want it to specifically appear only on the top side.