Select
Selects are useful for when you have more than 5 items, but still a managable amount.
Link to section titled: Component
Component
Select
- html<!-- COMPONENT-START: nc-input-field: Textarea -->
<div class="nc-input-field">
<label for="input" class="nc-stack">
<span class="nc-input-label">Label</span>
</label>
<select class="nc-select" id="input" name="input" aria-required="input">
<option value="value 1" selected="true">Value 1</option>
<option value="value 2">Value 2</option>
<option value="value 3">Value 3</option>
</select>
</div>
<!-- COMPONENT-END: nc-input-field: Textarea -->