Home Account Search

How to disable dotted outline in Mozilla Firefox

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:  

Success.gifAccepted 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.

Comments are locked for this post.