Getting StartedStyleguide
Content
Layout
Forms
Components
Utilities
Select
To start using it just add select
class on select HTML element.
Basic usage
<div class='col-24'><label class='display-block' for='select'>Label</label><div class='wrapper-input mb-3'><selectclass='select display-block'name='select'id='select'><option value="" disabled selected placeholder>Select something</option><option value="1">Option 1</option><option value="2">Option 2</option><option value="3">Option 3</option></select></div></div>
Labeled
Place a label or button in any side of a select. You may also place on both sides. Inside wrapper-input
just add a label or button with input-group-text
.
@
<div class='col-24'><label class='display-block' for='select'>Label</label><div class='wrapper-input mb-3'><spanclass='input-group-text'>@</span><selectclass='select display-block'name='select'id='select'><option value="" disabled selected placeholder>Select something</option><option value="1">Option 1</option><option value="2">Option 2</option><option value="3">Option 3</option></select></div></div>
Error
Select field can show the data contains errors. Add error
class on input and a element with box-validation box-invalid
below `wrapper-input
in case of error message is need it.
Error
<div class='col-24'><label class='display-block' for='select'>Label</label><div class='wrapper-input'><selectclass='select display-block error'name='select-error'id='select-error'><option value="" disabled selected placeholder>Select something</option><option value="1">Option 1</option><option value="2">Option 2</option><option value="3">Option 3</option></select></div><div class='box-validation box-invalid show mb-3'><i class="fas fa-exclamation-triangle"></i>Error</div></div>
Disabled
Select field can show that it is disabled. Add disabled
attribute/class on it.
<div class='col-24'><label class='display-block' for='select'>Label</label><div class='wrapper-input mb-3'><selectclass='select display-block'name='select-disabled'id='select-disabled'disabled><option value="" disabled selected placeholder>Select something</option><option value="1">Option 1</option><option value="2">Option 2</option><option value="3">Option 3</option></select></div></div>