Is there any way to get these two buttons to line up side by side. The end of the form automatically throws out a new line.
<form>
....
<button id="regSubmit" class="sbutton"><span class="register">SIGN UP</span></button>
</form>
<button id="regReset" class="sbutton"><span class="reset">RESET FIELDS</span></button>
With great difficulty, maybe.
Easiest thing to do is to add:
To the second button. Although, by the look of it it’s supposed to be a reset button for the form? Wouldn’t
<input type="reset" />be more suitable?