I have a select
dropdown, with custom styling. It does not have a border, but when it is focused, it gets this green/blue border. Anyone know how to get rid of it?
Asked
Active
Viewed 1,697 times
-1

IWI
- 1,528
- 4
- 27
- 47
-
2use select:focus{ outline:none !important; } – Araz Shamsaddinlouy Mar 15 '17 at 18:17
-
2`select:focus {outline: 0;}` Thats all you need – Mr. Alien Mar 15 '17 at 18:17
1 Answers
0
As @Araz and @Mr. Alien said, select:focus {outline: 0;}
worked. Thank you

IWI
- 1,528
- 4
- 27
- 47
-
1Don't use `!important`, it is not required, and you'll end up in messy CSS later. – Mr. Alien Mar 15 '17 at 18:20