In Mozilla browsers it shows a dotted outline around a button, any link or an object like flash or video when it is clicked. It can be removed by applying following code to your CSS:
Accepted Solution :
* { outline: none; }
here we have used * to apply the rule so it applies to everything system-wide and you do not need to define it manually for every single thing. However, if you prefer to keep this dotted line for any specific event then you should not be using the * and define it to individual item that you would like to exclude.
|