How to Remove Outlines from Links

Posted by Lasantha Bandara on August 19th, 2015 File Under : css0 Comment

An CSS outline is a line (with dotted or other style) that is drawn around elements (outside the borders) to make the element "stand out". Look at the image below:

CSS Outlines

To remove or disable it from your links use the CSS code given below:

a {
  outline: 0 none !important;
}

If you are using blogger, add it just before ]]></b:skin>.

File Under : css

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.