Remove dotted outline around anchors
This has become quite a common question asked by many website owners.
“How do I remove that dotted outline around an anchor?”
Lucky for you all, it’s a really easy one to resolve as well. You just have to take a look at CSS for a second and add one line as follows:
a { outline:0; }
This will disable the outlines around clicked links all around your site.
Related: css.
Now that you know how to do it you may want to read about why you shouldn’t do this!
Click here to read the petition to not do this.