Remove the dotted border around hyper links with CSS

For web designers who doesn't care about minute details dotted border around link in a webpage is ok.But for those professionals who take into account every minute details in webdesigning here is a way to remove it using css:

a {
outline: none;
}


Just add the above code in your css.

And gone are the dotted borders!


No comments:

Post a Comment