Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
Last active July 15, 2017 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kareemkibue/04952289fcf3fc5eed6ec2cf481311ff to your computer and use it in GitHub Desktop.
Save kareemkibue/04952289fcf3fc5eed6ec2cf481311ff to your computer and use it in GitHub Desktop.
Unsetting broswer default <select> styling (IE 9+)
// Unset HTML Form Select //
%unset-select{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border: 0px none;
// IE 9-10
&::-ms-expand{
display:none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment