how to remove the dotted line around the clicked a element in html
Use outline:none
to anchor tag class
Like @Lo Juego said, read the article
a, a:active, a:focus {
outline: none;
}
Use outline:none
to anchor tag class
Like @Lo Juego said, read the article
a, a:active, a:focus {
outline: none;
}