Bonjour,
Ne chercher plus, j'ai trouvé la réponse, la marge provient du formulaire et non pas du bouton "submit". Voici un exemple du problème et la solution:
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<form action="http://www.domaine.com/" method="post">
<input type="radio" name="test" value="oui" checked> oui<br>
<input type="radio" name="test" value="non"> non<br>
<input type="submit" value="Test">
</form>
</td>
</tr>
</table>
la solution margin-bottom:0
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<form action="http://www.domaine.com/" method="post" style="margin-bottom: 0">
<input type="radio" name="test" value="oui" checked> oui<br>
<input type="radio" name="test" value="non"> non<br>
<input type="submit" value="Test">
</form>
</td>
</tr>
</table>
Tant mieux si cela peut aider quelqu'un