When creating a basic drop-down menu with the select tag, Chrome automatically applies their default styling. Is there a way to remove these defaults?
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border: none;
}