Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Last active January 3, 2016 04:59
Show Gist options
  • Select an option

  • Save DeanPoulin/8412827 to your computer and use it in GitHub Desktop.

Select an option

Save DeanPoulin/8412827 to your computer and use it in GitHub Desktop.
Checkbox & Radio Addons
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<span class="input-group-addon">
<input type="checkbox">
</span>
<input type="text" class="form-control">
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<div class="input-group">
<span class="input-group-addon">
<input type="radio">
</span>
<input type="text" class="form-control">
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment