Reputation: 1109
form select.form-control { -moz-appearance: none; }
I am using below css for hiding arrow from select list element but it's not working in Firefox 34 version. is there any css fix for older browser version
https://jsfiddle.net/utLxvqbx/
Upvotes: 2
Views: 7346
Reputation:
add this to your css:
select {
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';
}
See fiddle: https://jsfiddle.net/utLxvqbx/2/
Upvotes: 3