Bonjour , j'ai un soucis avec un tableau sous Firefox tous fonctionne nikel mais sur IE j'ai un espace blanc entre les cellules ou se trouve mes input text

J'ai essayé pas mal de chose rien à faire , cette espace est assez génant.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
 <table class="formulaire_inscription" cellpadding="0" cellspacing="0" border="0">
     <tr>
	td><h1>&raquo; Identifiant</h1></td>			 
   </tr>	 
   <tr>
            <td><input type="text" ></input></td>
   </tr>
    <tr>
           <td><input type="text" ></input></td>
    </tr>				 
</table>
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
 
*{
margin:0;
padding:0;
}
 
input {
border: 1px solid #666666;
width: 150px;
height: 18px;	
} 
 
img{
border:0;
}
 
.container_inscription{
width:705px;
float:left;
}
 
.inscription{
width:650px;
text-align:left;
margin-left:auto;
margin-right:auto;
}
 
.inscription h1{
font-size:12px;
color:#07a8eb;
font-family:verdana;
}
 
.inscription td{
font-size:11px;
font-family:verdana;
padding-left:5px;
color:#00c2d1;
}
 
.condition_inscription{
width:650px;
background-color:#edfffe;
border:1px dashed #07a8eb;
}
 
.formulaire_inscription{
width:650px;
margin-top:20px;
border:1px dashed #07a8eb;
}