Ich möchte zwei Buttons nebeneinander positionieren. Leider werden sie immer untereinander dargestellt. Wie schaff ich das (in xhtml)?
~~~html
<form name="validate" method="POST" action="abc.php">
<input type="hidden" name="test" value=""/>
<input type="submit" value="Eingabe validieren"/>
</form>
<form name="download" method="POST" action="test.php">
<input type="hidden" name="download" />
<input type="submit" value="xml Download"/>
</form>