• Visual Language
  • Forms

Selectbox

Usage notes

Select boxes where possible should default to a value. If this is not possible, default to "Please select..."

 
<label for="select">Selection</label>
<div class="field field--spaced">
  <select class="input input--mini" id="select" name="">
    <option value="1" selected>Please select:</option>
    <option value="2">Options go here</option>
    <option value="3">And here</option>
    <option value="4">Here, too!</option>
    <option value="5">And even here.</option>
  </select>
</div>