CSS
Remove dotted outline using CSS in Firefox on Buttons, Links
Here are short super tricks to remove dotted outline using CSS in Firefox on Buttons & Links.
Remove Dotted Outline using CSS in Browsers
//Remove dotted outline on buttons
button::-moz-focus-inner {
border: 0;
}
//Remove dotted outline on link
a:focus {
outline: none;
}Simple, isn’t it?
Do you know of any other ways to remove dotted outline using CSS for other browsers? Please feel free to share by commenting below.