Bonjour tout le monde, j'ai inegré un clanedrier a mon formulaire html, sur IE le calendrier s'affiche dans l'input text en cliquant dessus, par contre sous fierfox il l'affiche tout au début de la page.
voici le code css du clanedirer
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
 .ds_box {
background-color: #FFF;
border: 1px solid #000;
position: absolute;
z-index: 32767;
}
 
.ds_tbl {
background-color: #FFF;
}
 
.ds_head {
background-color: #333;
color: #FFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 8px;
font-weight: bold;
text-align: center;
letter-spacing: 1px;
}
 
.ds_subhead {
background-color: #CCC;
color: #000;
font-size: 8px;
font-weight: bold;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
width: 12px;
}
 
.ds_cell {
background-color: #EEE;
color: #000;
font-size: 8px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 1px;
cursor: pointer;
}
 
.ds_cell:hover {
background-color: #F3F3F3;
} /* This hover code won't work for IE */
code formulaire:


Code html : 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
<table class="ds_box" cellpadding="0" cellspacing="0" id="ds_conclass" style="display: none;">
<tr><td id="ds_calclass">
</td></tr>
</table>
 
 
<div id="form">
<form method="post" action=""  id="monform">
<fieldset>	
<legend> Date </legend>
<label for="dd">Début :</label><input type="text" id="dd" name ="dd"   onClick="ds_sh(this);"    />
 <label for="df">Fin :</label>   <input type="text" id="df" name="df" onclick="ds_sh(this);"   />                                                                            
</fieldset>				
<input type="submit" id="submit" value='Valider'  >
</form>
  </div>