Bonjour à tous j'ai un petit problème

je voudrai créer un formulaire un peu comme ci dessous

voici mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<form action="cible.php" method="post">
 
<fieldset>
	<legend>Etat Civil</legend>
	<table BORDER=0>
 
	<tr>
	<td><label for="Civ">Civilité </label></td>
	<td><select name="civ"  id="civ"/>
			<option value="Mr">MONSIEUR</option>
			<option value="Mme">MADAME</option>
			<option value="Mlle">MADEMOISELLE</option>
		</select>
	</td></br></br>
	</tr>
 
	<tr>
	<td><label for="nom">NOM</label></td>
	<td><input name="nom" type="text" id="nom"></td>
	</tr></br></br>
 
	<tr>
	<td><label for="prenom">PRENOM</label></td>
	<td><input name="prenom" type="text" id="prenom"></td>
	</tr></br></br>
 
	<tr>
	<td><label for="age">AGE</label></td>
	<td><input name="age" type="text" id="age"></td>
	</tr></br></br>	
 
</table>
</fieldset>
 
 
</form>
Avec ce code j'obtiens :


je voudrai savoir pourquoi, il y a un écart( l'espace blanc entre "état civil" et "civilité" et si vous avez une solution ça serai sympa merci à vous.