Whenever I try to select an option in my select box, a dotted rectangle appears. How do I remove this feature?
https://i.sstatic.net/BzsL2.png
I have noticed that many others are also facing the same issue. I tried updating my CSS with some properties based on their suggestions, but it did not solve the problem.
select::-moz-focus-inner {
border: 0;
outline: 0;
}
select{
color: #000;
color: rgba(0,0,0,0);
text-shadow: 0 0 0 #000;
margin: 10em 10em;
}
select::-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
For reference, I am using Firefox 38.0 on Ubuntu 14.04