Skip to content

Instantly share code, notes, and snippets.

@macloo
Created December 16, 2015 16:53
Show Gist options
  • Save macloo/73557728aceb94772587 to your computer and use it in GitHub Desktop.
Save macloo/73557728aceb94772587 to your computer and use it in GitHub Desktop.
Radio buttons that are not visible as radio buttons (Bootstrap)
<div class="row">
<div class="col-xs-12 text-center">
<h2>Select version:</h2>
<div class="btn-group" data-toggle="buttons">
<label id="esv" class="btn btn-primary active">
<input type="radio" autocomplete="off">ESV
</label>
<label id="kjv" class="btn btn-primary">
<input type="radio" autocomplete="off">KJV
</label>
<label id="nlt" class="btn btn-primary">
<input type="radio" autocomplete="off">NLT
</label>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment