Skip to content

Instantly share code, notes, and snippets.

@gunnarbittersmann
Last active August 29, 2015 14:14
Show Gist options
  • Select an option

  • Save gunnarbittersmann/a187c5bb55d1e9802ff1 to your computer and use it in GitHub Desktop.

Select an option

Save gunnarbittersmann/a187c5bb55d1e9802ff1 to your computer and use it in GitHub Desktop.
select and text input
/**
* select and text input
*/
select, input
{
border: 1px solid silver;
padding: 1em;
}
select
{
appearance: none;
}
option::after
{
content: "▼";
}
<select>
<option>option 1</option>
<option>option 2</option>
</select>
<input placeholder="text"/>
// alert('Hello world!');
{"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