Labels are stacked on top of the input, and you may add some additional informations using a small element (floated right, or left for RTL):
<p class="button-height block-label"> <label for="input" class="label"> <small>Additional information</small> Label </label> <input type="text" name="input" id="input" class="input full-width" value=""> </p>
Inline blocks have a left padding, and the label is floated left in the free space.
// Small inline label <p class="button-height inline-small-label"> <label for="input" class="label">Label</label> <input type="text" name="input" id="input" class="input" value=""> </p> // Normal inline label <p class="button-height inline-label"> <label for="input" class="label">Label</label> <input type="text" name="input" id="input" class="input" value=""> </p> // Medium inline label <p class="button-height inline-medium-label"> <label for="input" class="label">Label</label> <input type="text" name="input" id="input" class="input" value=""> </p> // Large inline label <p class="button-height inline-large-label"> <label for="input" class="label"> Label <small>with tip</small> </label> <input type="text" name="input" id="input" class="input" value=""> </p>
<fieldset class="fieldset"> <legend class="legend">Legend</legend> ... </fieldset>
Fields lists are a special style design to be used inside fieldsets. It includes rows, top and bottom tips around inputs, and a special carved section style:
<fieldset class="fieldset fields-list"> <legend class="legend">Legend</legend> <!-- Standard line --> <div class="field-block button-height"> <small class="input-info">Info above input</small> <label for="input-1" class="label"><b>Label</b> (tip)</label> <input type="text" name="input-1" id="input-1" value="" class="input"> <small class="input-info">Info below input</small> </div> <!-- Carved line --> <div class="field-drop button-height black-inputs"> <label for="input-2" class="label"><b>Label</b> (tip)</label> <input type="text" name="input-2" id="input-2" value="" class="input"> <small class="input-info">Info below input</small> </div> </fieldset>