Posts Tagged "CSS"

Disable Firefox Dotted Line around Links

O.K. so Firefox is an awesome browsers but it has a rather annoying feature that I’ve been trying to disable for some time now.  When ever you click and hold on a link it put’s a dotted line around the link and then leaves it there after you have clicked on the link.

To me that is rather annoying to me as I do a lot of AJAX stuff and it requires me to get that link with in the DOM and tell it to blur it’s self (lose focus).

Just yesterday I stumbled across this code on the web while looking for something else:

* { outline: none; }

What this does it tell any object not to have an outline around it.

That works for me.

read more