style a 3cselect 3e dropdown

Solutions on MaxInterview for style a 3cselect 3e dropdown by the best coders in the world

showing results for - "style a 3cselect 3e dropdown"
Lohan
05 Jan 2021
1select {
2   -webkit-appearance: none;
3   -moz-appearance: none;
4   appearance: none;
5   background-image: url(...);
6}
7select::-ms-expand {
8    display: none;
9}
10@media screen and (min-width:0\0) {
11    select {
12        background-image:none\9;
13        padding: 5px\9;
14    }
15}