So I want to disable the outline when clicking on a link, but I still want users to be able to tab through all links with a keyboard. Therefore, this fix should work
a:active {
outline: none; }
It works for all browsers except for Firefox. Any suggestions?