Last active
August 29, 2015 14:14
-
-
Save gunnarbittersmann/a187c5bb55d1e9802ff1 to your computer and use it in GitHub Desktop.
select and text input
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 and text input | |
| */ | |
| select, input | |
| { | |
| border: 1px solid silver; | |
| padding: 1em; | |
| } | |
| select | |
| { | |
| appearance: none; | |
| } | |
| option::after | |
| { | |
| content: "▼"; | |
| } |
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> | |
| <option>option 1</option> | |
| <option>option 2</option> | |
| </select> | |
| <input placeholder="text"/> |
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
| // alert('Hello world!'); |
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
| {"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment