Skip to content

Instantly share code, notes, and snippets.

@mrchimp
Created April 25, 2017 12:41
Show Gist options
  • Select an option

  • Save mrchimp/86db8573925495c9641a64aa4b35a77b to your computer and use it in GitHub Desktop.

Select an option

Save mrchimp/86db8573925495c9641a64aa4b35a77b to your computer and use it in GitHub Desktop.
Nice Select
<!-- Based on https://coderwall.com/p/w7npmq/fully-custom-select-box-simple-css-only -->
<div class="select select--nice">
<select>
<option value="example">Example</option>
<option value="example">Example</option>
<option value="example">Example</option>
<option value="example">Example</option>
<option value="example">Example</option>
</select>
</div>
.select--nice {
border: 1px solid #ccc;
width: 120px;
border-radius: 0;
overflow: hidden;
background: #fafafa url("img/chevron-down.png") no-repeat 90% 50%;
}
.select--nice select {
padding: 5px 8px;
width: 130%;
border: none;
box-shadow: none;
background: transparent;
background-image: none;
-webkit-appearance: none;
}
.select--nice select:focus {
outline: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment