Is there a way to align Radio buttons in both HORIZONTAL ROWS and VERTICAL COLUMNS perfectly? I need to organize the radio buttons into four rows. The radio buttons are displayed like this:
https://i.sstatic.net/JjiOm.png
As the text length varies, the radio buttons seem to shift either left or right. I want them to maintain proper alignment in both rows and columns. Here is my HTML code snippet:
<div class="row">
<div class="col-lg-12">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1">
<label class="form-check-label" for="inlineRadio1">A</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<label class="form-check-label" for="inlineRadio2">B</label>
</div>
...
</div>
<div class="col-lg-12">
...
</div>
<div class="col-lg-12">
...
</div>
<div class="col-lg-12">
...
</div>
</div>
Your assistance in resolving this issue would be highly appreciated.