Skip to content

Instantly share code, notes, and snippets.

@ckashby
Created June 29, 2018 23:37
Show Gist options
  • Save ckashby/f8f6ca3690ced0346ae636d3f3bfb9fd to your computer and use it in GitHub Desktop.
Save ckashby/f8f6ca3690ced0346ae636d3f3bfb9fd to your computer and use it in GitHub Desktop.
Test file to show Bootstrap 4.1.1 bug. Clicking on checkbox button's checkbox square is not toggling checkbox.
<!-- Load in Chrome Version 67.0.3396.87 (Official Build) (64-bit) on Mac OS 10.13.5 -->
<!-- Click on the white square in the button that is the checkbox. It will NOT toggle. Click on button toggles. -->
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked)
</label>
<label class="btn btn-primary">
<input type="checkbox" autocomplete="off"> Checkbox 2
</label>
<label class="btn btn-primary">
<input type="checkbox" autocomplete="off"> Checkbox 3
</label>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment