Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove outline from select box in FF

Is it possible to remove the dotted line surrounding a selected item in a select element?

alt text

I have tried to add the outline property in CSS but it did not work, at least not in FF.

<style>    select { outline:none; } </style> 

Update
Before you go ahead and remove the outline, please read this.
http://www.outlinenone.com/

like image 790
Martin at Mennt Avatar asked Sep 22 '10 20:09

Martin at Mennt


1 Answers

Well, Duopixel’s answer is plain perfect. If we go a step further we can make it bulletproof.

select:-moz-focusring {     color: transparent;     text-shadow: 0 0 0 #000; } 

Only valid for Firefox and the ugly dotted outline around the selected option is gone.

like image 86
Fleshgrinder Avatar answered Nov 09 '22 01:11

Fleshgrinder