I am currently working with angular 8
and I am in need of creating a webpage design using HTML, CSS, or Bootstrap.
The issue I am encountering is how to align every two buttons
next to each other with borders, and once the first row is completed, move to a new row with new buttons.
https://i.sstatic.net/YZYLD.png
This is what I have tried:
<input
hidden
type="file"
/>
<button >
Upload
</button>
<div style="width:400px;">
<div style="float: left; width: 130px">
<button
color="primary">
Download Template
</button>
</div>
<div style="float: right; width: 225px">
<button
color="primary">
Export
</button>
</div>
</div>