Ben
Ben

Reputation: 2564

remove the a href links border in css

<a href='...'><input type='button'></a>

I have <a> links when i click, it appear border. How to remove the border around

I have try style='border: none;' but it is not working

Upvotes: 1

Views: 598

Answers (2)

James Donnelly
James Donnelly

Reputation: 128856

Remove the element's outline from :focus:

a:focus {
    outline:none;
}

For accessibility reasons, however, you'll want to add in something which clearly shows when this link has been focussed. Otherwise some users will struggle to navigate their way around your site.

Upvotes: 3

Nitesh
Nitesh

Reputation: 15779

use outline:none;

For Instance,

a:focus{outline:none;}

Hope this helps.

Upvotes: 1

Related Questions