Dotted effect on select and button in Firefox

0

Is there any way to remove this dither that appears when you click a select or button in firefox?

    
asked by anonymous 10.02.2017 / 21:34

1 answer

0

Possibly this is the outline property of CSS.

You can disable it like this:

select { outline: none }

More information about this property: W3Schools outline Property .

    
10.02.2017 / 21:38