Thomas D: Button-Größe definieren??? (Part II) Immer noch ein Problem unter NS

Beitrag lesen

<Center>
<FORM>
<input width=100 style="width:100px" type=button value="Cancel" onClick="history.go(-2)">
<input width=100 style="width:100px" type=button value="Continue" onClick="document.location.href='index2.html'">
</FORM>
</Center>

Hallo Marco!
Vielleicht so:

<FORM>
<table width="100%" border=1 cellpadding=0 cellspacing=0>
<tr>
<td align=right>
  <input width=100 style="width:100px" type=button value="Cancel" onClick="history.go(-2)">
</td>
<td align=left>
  <input width=100 style="width:100px" type=button value="Continue" onClick="document.location.href='index2.html'">
</td>
</tr>
</table>
</FORM>

Thomas