How do I get these dotted lines off the menu when the link is selected?
I've already tried using outline:none
, but it only works on Chrome, Firefox, Edge, and IE does not change anything.
Try to put the selectors :active
and :focus
on your link.
a:active, a:focus {
outline: none;
}