I found that if there is a a
link in the page which does not link to a new page,then when user click it,there will be a dotted line around the element,it will o
Like @Lo Juego said, read the article
a, a:active, a:focus {
outline: none;
}
To remove all doted outline, including those in bootstrap
themes.
a, a:active, a:focus,
button, button:focus, button:active,
.btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
outline: none;
outline: 0;
}
input::-moz-focus-inner {
border: 0;
}
Note: You should add link href for bootstrap css before the main css, so bootstrap doesn't override your style.
a {
outline: 0;
}
But read this before change it:
removing-the-dotted-outline
In my case it was a button, and apparently, with buttons, this is only a problem in Firefox. Solution found here:
button::-moz-focus-inner {
border: 0;
}
Use outline:none
to anchor tag class
Its simple try below code --
a{
outline: medium none !important;
}
If happy cheers! Good day