@ussebastian/kitdigital
Version:
Kit Digital de la Universidad San Sebastián
19 lines (18 loc) • 929 B
HTML
<form class="uss-form">
<div class="uss-form-group">
<label class="uss-form__label uss-form__label--margin-plus">
Radio button
<i class="uss-icon ri-question-line"></i>
</label>
<input id="radio-1" type="radio" value="select an op" name="radio-group" />
<label class="uss-form__radio-label" for="radio-1"
>Use radio buttons if the meaning of the empty</label
>
<input id="radio-2" type="radio" value="between these" name="radio-group" />
<label class="uss-form__radio-label" for="radio-2"> Between these values </label>
<input id="radio-3" type="radio" value="between these" name="radio-group" disabled />
<label class="uss-form__radio-label" for="radio-3"> Between these values disable </label>
<input id="radio-4" type="radio" value="between these" name="radio-group" checked />
<label class="uss-form__radio-label" for="radio-4"> Other </label>
</div>
</form>