Reputation: 39
When I go to a anchor (ID) I get a border around the section. How can I remove this border?
Upvotes: 1
Views: 571
Reputation: 11
{
outline:none;
}
This is based on browser. Chrome gave the border instead of Firefox so if you are using Chrome then u have to write this code in your CSS file.
Upvotes: 0
Reputation: 3062
you can remove the same by just writing
{ outline: none; }
in your css
Upvotes: 1