I have a large collection of buttons that I need to organize into groups on my website. Currently, the design is not displaying them neatly in rows as I would like. I am using bootstrap 4.
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox" name="bla" id="2" autocomplete="off" value="2" > example button
</label>
<label class="btn btn-primary">
<input type="checkbox" name="bla2" id="2" autocomplete="off" value="2" > example button
</label>
... (continue with more buttons)
Appreciate any assistance. Thank you!