Default on background
An input field is by default a field where the user has to insert something. The functionality of an input field is based on the given type: text, email, password, number, tel, ... .
The size of the label and border of the field change, depending on the state. Possible states are:
- has-value
- is-active
<div class="c-input js-input ">
<div class="c-input__wrapper">
<input id="input-default-background-6" class="c-input__field" type="text" name="input-default-background-6" value="" />
<label class="c-input__label " for="input-default-background-6">
Text input
<small class="c-input__info"></small>
</label>
</div>
</div>