salut à tous.

voila j'ai un formulaire, tout marche bien sous ie mais sous firefox rien ne vas plus.

en fait le problement, c'est qu'il ne respecte pas les tailles des composants que j'ai défini ( le mechant)...résultat, rien n'est aligner sur ma page et tout est vraiment moche!

voila 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<table cellSpacing="0" cellPadding="0" width="437" border="0">
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblCiv" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:dropdownlist id="m_cmbCiv" runat="server" width="33%"></asp:dropdownlist></td>
						</tr>
						<tr>
							<td class="txtCopy" align="left" width="30" height="15"><span class="txt"><br>
								</span></td>
							<td class="txtCopy" align="left" width="200"><asp:label class="txt" id="m_lblName" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox class="txt" id="m_txtName" runat="server" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblFirst" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox class="txt" id="m_txtFirstName" runat="server" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblSexe" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:dropdownlist id="m_cmbSexe" runat="server" width="66%"></asp:dropdownlist></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lbDateOfBirth" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:dropdownlist id="m_cmbDay" runat="server" width="33%"></asp:dropdownlist><asp:dropdownlist id="m_cmbMonth" runat="server" width="33%"></asp:dropdownlist><asp:dropdownlist id="m_cmbYear" runat="server" width="33%"></asp:dropdownlist></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td align="left" width="200" height="15"><asp:label class="txt" id="m_lblCountry" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:dropdownlist id="m_cmbCountry" runat="server" width="100%"></asp:dropdownlist></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblMail" runat="server"></asp:label>¹ 
								*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox class="txt" id="m_txtMail" runat="server" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox><asp:regularexpressionvalidator id="RegularExpressionValidator1" runat="server" ValidationExpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
									ControlToValidate="m_txtMail" ErrorMessage="!"></asp:regularexpressionvalidator></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblConfirmMail" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox class="txt" id="m_txtConfirmMail" runat="server" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox><asp:regularexpressionvalidator id="RegularExpressionValidator2" runat="server" ValidationExpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
									ControlToValidate="m_txtConfirmMail" ErrorMessage="!"></asp:regularexpressionvalidator></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblPwd" runat="server"></asp:label>*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox id="m_txtPwd" runat="server" TextMode="Password" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox></td>
						</tr>
						<tr>
							<td class="txt" align="left" width="30" height="15">&nbsp;</td>
							<td class="txt" align="left" width="200" height="15"><asp:label class="txt" id="m_lblConfirmPwd" runat="server"></asp:label>²*</td>
							<td height="15"><IMG src="/_images/px.gif" width="5"></td>
							<td width="170" colSpan="2" height="15"><asp:textbox id="m_txtConfirmPwd" runat="server" TextMode="Password" width="100%" onKeydown="this.style.backgroundColor='white'"></asp:textbox></td>
						</tr>
						<tr>
							<td colSpan="5" height="40"><asp:checkbox class="txt" id="m_chkIsineoNews" runat="server"></asp:checkbox><br>
								<asp:checkbox class="txt" id="m_chkCgu" runat="server"></asp:checkbox><br>
								<asp:label id="m_lblError" runat="server" ForeColor="Red"></asp:label><br>
							</td>
						</tr>
						<tr align="center">
							<td colSpan="5" height="35"><asp:button id="m_btnConfirm" runat="server" Width="200px" CssClass="bouton"></asp:button></td>
						</tr>
						<tr>
							<td vAlign="bottom" colSpan="5" height="40"><span class="txt10">¹ Invisible pour les autres 
            utilisateurs <br>² Adresse valide 
            indispensable<br>* Champs obligatoires <br></span></td>
						</tr>
					</table>