Created
May 6, 2015 16:22
-
-
Save sealucky7/9c5cfb3052c326715bcd to your computer and use it in GitHub Desktop.
Another view select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select { | |
| width: 100px; | |
| height: 26px; | |
| border-radius: 10px; | |
| -webkit-appearance: none; | |
| background-image: url("../img/select_bg.png"); | |
| background-position: right center; | |
| background-repeat: no-repeat; | |
| line-height: 1em; | |
| /* for FF */ | |
| -moz-appearance: none; | |
| text-indent: 0.01px; | |
| text-overflow: ''; | |
| /* for IE */ | |
| -ms-appearance: none; | |
| appearance: none!important; | |
| } | |
| select::-ms-expand { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment