Last active
August 29, 2015 14:15
-
-
Save manfromanotherland/41ee26996ffdd044ae5b to your computer and use it in GitHub Desktop.
CSS: Custom select #snippet
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 { | |
position: relative; | |
overflow: hidden; | |
width: 100%; | |
} | |
.select select { | |
width: 130%; | |
padding: .4em .8em; | |
border: none; | |
box-shadow: none; | |
background: none; | |
-webkit-appearance: none; | |
} |
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
<div class="select"> | |
<select name="select"> | |
<option value="">Anything</option> | |
</select> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment