Created
April 25, 2017 12:41
-
-
Save mrchimp/86db8573925495c9641a64aa4b35a77b to your computer and use it in GitHub Desktop.
Nice 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
| <!-- 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> |
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--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