Removing Dotted Links
March 1st, 2009
If you don’t like the dotted outline that appears around every link (see image bellow) you can useĀ this CSS trick :
outline: none;

Example :
a { outline: none;}
Later edit : You must add the pseudo class of :focus to work on all IE versions. (thanks to Eric Hoffman )
You must add the pseudo class of :focus in order for this to be full proof. Simply declaring it on the anchor tag alone will not work.
Hi, thank you for the observation.