I am facing an issue where my two input fields are not aligning properly with the button on my webpage. The button is appearing below the inputs instead of being at the same height.
#startButton {
height: 90%;
width: 20%;
margin-left: 79%;
position: absolute;
outline: 0;
}
<div id='menu'>
Number of colums:
<br>
<input id='colsInput' type='number' maxlength='2'>
<br>
<br> Number of rows:
<br>
<input id='rowsInput' type='number' maxlength='2'>
<button id='startButton'>Start</button>
</div>