JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<button onclick="javascript:submitRequests();">Submit Request(s)</button>
<button onclick="javascript:document.location.reload(true);">Reset</button>
<div class="clr"></div>
</div>
CSS
.clr{ clear:both;}
.container {
width:350px;
overflow: hidden;
}
button {
float: left;
width:150px;
}
button:first-child {
margin-right: 50px;
}