Echo Base

Scanner to System, Scanner to Base

Radio Buttons and Checkboxes

Examples

Below are some examples of radio buttons and checkbox fields.

Radio Buttons

<div class="field field--radiobuttons">
  <label class="radiobutton">
    Option A
    <input type="radio" name="radio" checked="checked">
    <span class="radiobutton__mark"></span>
  </label>
</div>

Checkboxes

<div class="field field--checkboxes">
  <label class="checkbox">
    Option A
    <input type="checkbox" checked="checked">
    <span class="checkbox__mark"></span>
  </label>
</div>