Ever noticed that FireFox applies a border/outline around links. This CSS snippet will remove dotted line around link.
If this is what you are trying to accomplish, try using the below css snippet:
- remove dotted line around link
- remove dotted border
- remove firefox border
- remove css outline
- remove dotted border around link
- css remove dotted border
- css remove outline
- css remove border
Remove Dotted Line Around Link
/*Remove Mozilla Firefox Border – Remove Dotted Line Around Link */
a { outline: 0; }
Remove Dotted Line Around Link in FireFox
Try this if you still have issues in firefox
/*Remove Mozilla Firefox Border – Remove Dotted Line Around Link */
a:active { outline: none; }
a:focus{ -moz-outline-style: none; }