Created
June 3, 2015 19:41
-
-
Save farrukhmomin/9434d5f2218351a0b8a2 to your computer and use it in GitHub Desktop.
HTML Select Styling
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
.combo { | |
background: #efefef url(../images/combo-arrow.png) no-repeat right 8px center; | |
border: solid 1px #ccc; | |
border-radius: 6px; | |
color: #333; | |
padding: 6px 4px; | |
overflow:hidden; | |
display:inline-block; | |
} | |
.combo select { | |
background:transparent; | |
width:130%; | |
border:none; | |
} | |
<span class="combo"> | |
<select> | |
<option>-Approved-</option> | |
</select> | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment