I'm still pretty green at CSS, having the following CSS / HTML:
<input type="reset" value="Clear" style="float: right;" />
<input type="submit" value="Send" style="float: right;" />
Produces the following results:
Instead of the desired output:
Changing the order of the HTML elements seems to fix the issue but is also counter-intuitive.
What is the general solution to this kind of problems?