「Bootstrap4入門」ラジオボタンを使用するサンプル
書式
class="btn-group btn-group-toggle" data-toggle="buttons"
使用例
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked>ラジオボタンAA
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off">ラジオボタンBB
</label>
</div>