non è il bottone attiva ma il tag form che ti crea questo problema.

Nel css devi impostarlo a margin = 0.

Oppure modo un po' più empirico ma che funziona anche con netscape:

<table width="180" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>prova</td>
</tr><form name="form1" method="post" action="">
<tr>
<td>
<input type="submit" name="Submit" value="Submit">
</td>
</form></tr>
</table>


(in pratica il tag form non è dentro il tag td ma fuori).


Ciao ciao