Skip to content

Instantly share code, notes, and snippets.

@e-9
Created December 5, 2013 18:15
Show Gist options
  • Save e-9/7810438 to your computer and use it in GitHub Desktop.
Save e-9/7810438 to your computer and use it in GitHub Desktop.
Etiqueta - Radiobutton: Ejemplo para formar la combinacion de etiqueta con radiobutton
<div class="form-group">
<label class="col-md-2 control-label">Etiqueta</label>
<div class="col-md-3">
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Value 1
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Value 2
</label>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment