I am trying to display two HTML buttons next to each other on the same line, with the "Submit Request(s)" button appearing first. The issue I am facing is that the top of the second button aligns with the bottom of the first one. The second button is correctly positioned to the right due to the margin-left: 50px property. Here's the HTML code for both buttons:
<button style="float: left;" onclick="javascript:submitRequests();">
Submit Request(s)
</button>
<button style="float: left; margin-left: 50px"
onclick="javascript:document.location.reload(true);">
Reset
</button>