Skip to content

Instantly share code, notes, and snippets.

@mohamnag
Last active August 29, 2015 14:08
Show Gist options
  • Save mohamnag/fc05ea86d725b49d6077 to your computer and use it in GitHub Desktop.
Save mohamnag/fc05ea86d725b49d6077 to your computer and use it in GitHub Desktop.
CSS to over come the select arrow display and show a customized element
.custom-select {
-webkit-appearance: none;
-moz-appearance: window;
appearance: none;
border-radius: 0;
background: transparent;
text-indent: 0.01px;
text-overflow: '';
&::-ms-expand {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment