Dariush Jafari
Dariush Jafari

Reputation: 5443

remove dashed border of the link

how can I remove light dashed border of the a tag on focus mode?
when you click a link, it becomes dashed.
I set tabindex:-1 , but it did not make sense.

I want to whether I can remove it?

Upvotes: 0

Views: 113

Answers (1)

Sudhir Bastakoti
Sudhir Bastakoti

Reputation: 100175

do you mean something like:

a:active {
    outline: none;
}

a:focus {
    -moz-outline-style: none;
}

Upvotes: 1

Related Questions