Reputation: 1264
My problem is remove dotted border when I click on a tag link. After clicking its looks like following type.
I also tested in jsfiddle but on there this work perfect not unwanted dotted border draw when I enter image description here click on a tag link.
Upvotes: 0
Views: 105
Reputation: 27614
Almost all old browser versions have this problem.
To fix this, add outline properties in your <a> tag
and set value 0 none
:
a {
outline: 0 none;
}
Upvotes: 3