Index

arrow_back "Input" Category

Select

The "select" element allows the user to select a single item from an expandable list of options.

Demo

Title Text

Code

code scss/elements/form/_input.scss
<div class="input input-select">
	<span class="input-title">Title Text</span>
	<select id="option">
		<option>Option 1</option>
		<option>Option 2</option>
		<option>Option 3</option>
		<option>Option 4</option>
		<option>Option 5</option>
	</select>
</div>