Skip to content

Instantly share code, notes, and snippets.

@khlbrg
Last active May 26, 2022 15:04
Show Gist options
  • Save khlbrg/9130604 to your computer and use it in GitHub Desktop.
Save khlbrg/9130604 to your computer and use it in GitHub Desktop.
Remove all style from a html select
select {
border:none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-ms-appearance: none; /* get rid of default appearance for IE8, 9 and 10*/
}
@William-2020-03-03
Copy link

for element, after applying, you will find the padding is different....

@Marouane328
Copy link

thanks, it worked

@LaptopKing
Copy link

Thanks, helped a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment