Skip to content

Instantly share code, notes, and snippets.

@manfromanotherland
Last active August 29, 2015 14:15
Show Gist options
  • Save manfromanotherland/41ee26996ffdd044ae5b to your computer and use it in GitHub Desktop.
Save manfromanotherland/41ee26996ffdd044ae5b to your computer and use it in GitHub Desktop.
CSS: Custom select #snippet
.select {
position: relative;
overflow: hidden;
width: 100%;
}
.select select {
width: 130%;
padding: .4em .8em;
border: none;
box-shadow: none;
background: none;
-webkit-appearance: none;
}
<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