CSS Firefox - How to deactivate the dotted border ( firefox click indicator )?

browser, css, firefox, webbrowser-control

Solution

Provided that your menu items are not input elements (say, buttons), you can hide it using CSS, like so:

element { outline: none; }

Problem

This click indicator is a disgusting piece for my recent web projects.. I hate this! - How can I say to my Firefox browser that he should not mark the clicked object?

Original source

Related problems