I have set up my buttons like this:
https://i.stack.imgur.com/OMfhp.png
In the image, you can see that the Left Option Button is larger, and I want all buttons to be like that. They are supposed to be aligned next to each other as I am using the Bootstrap grid system with 3x4 columns. The size of the button is currently not taking up all available horizontal space because I added this line to my HTML:
style="width: 400%; height: 500%;"
This was just to show visually what I am trying to achieve. I am new to bootstrap, so styling it is a bit challenging for me. Below is my HTML. Do I need CSS to accomplish what I want? If so, do I need to specify the exact height I want the buttons to be or is there a more relative method I can use to avoid issues on mobile devices?
I also need to add text inside the button that scales properly once the buttons are scaled correctly. Is that possible?
<div class="categories-container">
<div class="container">
<div class="row">
<div class="col-md-4">
<form role="button">
<div class="input-group">
<input type="button" class="btn btn-primary btn-lg" value="Option" name="category-gameplay-btn" id="category-gameplay-btn">
</div>
</form>
</div>
<div class="col-md-4">
<form role="button">
<div class="input-group">
<input type="button" class="btn btn-primary btn-lg" value="Option" name="category-editor-btn" id="category-editor-btn">
</div>
</form>
</div>
<div class="col-md-4">
<form role="button">
<div class="input-group">
<input type="button" class="btn btn-primary btn-lg" value="Option" name="category-editor-btn" id="category-editor-btn">
</div>
</form>
</div>
</div>
</div>
</div>