I'm encountering an issue with Bootstrap where I am trying to align the blue buttons neatly below the image.
Link to the image: img
Here is a visual representation: https://i.sstatic.net/tB5mU.png
This is the code snippet:
<div class="row">
<div class="col">
<input id="InputFile1" type="file" accept="image/*" onchange="loadFile(event, 'output1', 'spanIMG1')" hidden>
<img id="output1" style="height: 135px; width: 135px;" src="../Images/noIMG.jpg">
<a class="btn btn-info" style="width: 135px;" href="javascript:{}">First Image</a>
</div>
<div class="col">
<input id="InputFile2" type="file" accept="image/*" onchange="loadFile(event, 'output2', 'spanIMG2')" hidden>
<img id="output2" style="height: 135px; width: 135px;" src="../Images/noIMG.jpg">
<a class="btn btn-info" style="width: 135px;" href="javascript:{}">Second Image</a>
</div>
<div class="col">
<input id="InputFile3" type="file" accept="image/*" onchange="loadFile(event, 'output3', 'spanIMG3')" hidden>
<img id="output3" style="height: 135px; width: 135px;" src="../Images/noIMG.jpg">
<a class="btn btn-info" style="width: 135px;" href="javascript:{}">Third Image</a>
</div>