I'm attempting to align multiple input elements (~7) on the same line.
Below is the current code snippet:
<form>
<b> One </b>
<input type="number" style = "width: 5%; vertical-align:top" class="form-control" name="quantity" value="1" >
</form>
<form>
<b> Two </b>
<input type="number" style = "width: 5%; vertical-align:top" class="form-control" name="quantity" value="1" >
</form>
<form>
<b> Three</b>
<input type="number" style = "width: 5%; vertical-align:top" class="form-control" name="quantity" value="1" >
</form>
The issue I encounter is that each input appears on a separate line instead of being aligned on the same line.
Edit: Additionally, I would like them to be spaced out in a way that allows the input elements to occupy the entire line. How can I achieve this?