Skip to content

Instantly share code, notes, and snippets.

@fjcero
Created April 18, 2012 15:39
Show Gist options
  • Save fjcero/2414421 to your computer and use it in GitHub Desktop.
Save fjcero/2414421 to your computer and use it in GitHub Desktop.
<!-- Text Box -->
<div class="form-item form-text">
<label for="text">Label</label>
<input type="text" name="text" id="text"/>
<span class="css-tooltip css-tooltip-top">Lorem ipsum dolor sit amet</span>
</div>
<!-- Check Box -->
<div class="form-item form-check">
<label for="check" class="label">Label</label>
<input type="checkbox" name="check" id="check"/>
</div>
<!-- Select Box -->
<div class="form-item form-select">
<label for="select" class="label">Label</label>
<select name="select" id="select">
<option value="">1</option>
<option value="">2</option>
<option value="">3</option>
<option value="">4</option>
<option value="">5</option>
<option value="">6</option>
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment