Created
April 18, 2012 15:39
-
-
Save fjcero/2414421 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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