I'm currently working on a form layout where each row contains a different number of columns, with labels and inputs in each column. However, I'm facing an issue where the start of the input is not aligned vertically for each row.
I tried using the align-self-center order-2
classes from Bootstrap but it didn't work as expected.
Source Code
<div class="row mt-3">
<div class="col-md-12">
... (source code continued)
The Result https://i.sstatic.net/A3Avk.png
Looking at the code above, how can I ensure that the start of each input in every row is vertically aligned and visually appealing? Are there any specific Bootstrap classes that can help achieve this?