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
<table class="yui3-table yui3-table-bordered"> | |
... | |
</table> |
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
<table class="yui3-table yui3-table-horizontal"> | |
... | |
</table> |
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
<tr class='yui3-table-odd'> | |
<td>3</td> | |
<td>Hyundai</td> | |
<td>Elantra</td> | |
<td>2010</td> | |
</tr> | |
<tr> | |
<td>4</td> | |
<td>Ford</td> | |
<td>Focus</td> |
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
<table class="yui3-table yui3-table-bordered"> | |
<thead class="yui3-thead-simple"> | |
<tr> | |
<th>#</th> | |
<th>Make</th> | |
<th>Model</th> | |
<th>Year</th> | |
</tr> | |
</thead> | |
<tbody> |
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
<form> | |
<fieldset> | |
<legend>Legend</legend> | |
<label>First Name</label> | |
<input type="text"> | |
<label>Last Name</label> | |
<input type="text"> | |
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
<form> | |
<fieldset> | |
<legend>Legend</legend> | |
<div class='yui3-g-responsive'> | |
<div class='yui3-u-1-3'> | |
<label> | |
First Name | |
<input type="text"> | |
</label> |
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
<form class="yui3-form-inline"> | |
<legend>A compact inline form</legend> | |
<input type="text" class="yui3-input-small" placeholder="Email"> | |
<input type="password" class="yui3-input-small" placeholder="Password"> | |
<label class="yui3-checkbox"> | |
<input type="checkbox"> Remember me | |
</label> | |
<button type="submit" class="yui3-button">Sign in</button> | |
</form> |
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
<form class="yui3-form-horizontal"> | |
<fieldset> | |
<div class="yui3-control-group"> | |
<label>Username</label> | |
<input type="text" placeholder="Username"> | |
</div> | |
<div class="yui3-control-group"> | |
<label>Password</label> | |
<input type="password" placeholder="Password"> |
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
<form> | |
<fieldset class='yui3-group'> | |
<input type="text" class='yui3-input-large' placeholder='Username'> | |
<input type="password" class='yui3-input-large' placeholder='Password'> | |
<input type="text" class='yui3-input-large' placeholder='Email'> | |
</fieldset> | |
<fieldset class='yui3-group'> | |
<input type="text" class='yui3-input-large' placeholder='Another Group'> | |
<input type="text" class='yui3-input-large' placeholder='More Stuff'> | |
</fieldset> |
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
<input class="yui3-input-mini" type="text"> | |
<input class="yui3-input-small" type="text"> | |
<input class="yui3-input-medium" type="text"> | |
<input class="yui3-input-large" type="text"> | |
<input class="yui3-input-xlarge" type="text"> | |
<input class="yui3-input-xxlarge" type="text"> |