Last active
August 29, 2015 14:04
-
-
Save adamledwards/dee3b66d8bb5925f176b 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
<div class='FieldWrapper radiobutton'> | |
<ul id='someID'> | |
<li> | |
<label for="foo">foo</label> | |
<input id="foo" name="foo" type="radio" value="Yep"> | |
</li> | |
<li> | |
<label for="bar">bar</label> | |
<input id="bar" name="bar" type="radio" value="Nope"> | |
</li> | |
</ul> | |
</div> | |
<!--insead of --> | |
<div class="FieldWrapper radiobutton"> | |
<table border="0" class="FieldTextBoxMedium" id="someID"> | |
<tr> | |
<td> | |
<input id="foo" name="foo" type="radio" value="Yep"> | |
<label for="foo">Yep</label> | |
</td> | |
</tr> | |
<tr> | |
<td> | |
<input id="bar" name= "bar" type="radio" value="Nope"> | |
<label for="bar">Nope</label> | |
</td> | |
</tr> | |
</table> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment