Bonjour, j'ai un petit soucis, lorsque je redimensionne mon select, le curseur est coupé, je vous mets une capture d'écran et le code, si quelqu'un a déjà eut ce soucis ...
et le css :
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 $buffer = '<div class="label_info"><label for="pays"><font class="t10grey"><b>Pays *</label></div>'; print($buffer); $buffer = '<div class="info"><select name="pays" size="1" id="pays" class="input_mdp">'; print($buffer); for ($index = 0; $index < $this->nbPays; $index++) { if (isset($this->client->pays) && $this->client->pays == $this->tabPays[$index]->id) { $buffer = '<option value="'.$this->tabPays[$index]->id.'" selected>'.$this->tabPays[$index]->texte.'</option>'; } else { $buffer = '<option value="'.$this->tabPays[$index]->id.'">'.$this->tabPays[$index]->texte.'</option>'; } print($buffer); } $buffer = '</select></div>'; print($buffer);
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 .input_mdp { width: 40%; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #d3d3d3; border-right-color: #d3d3d3; border-bottom-color: #d3d3d3; border-left-color: #d3d3d3; background-color: #ffffff; background-image: url(../images/bg/textinputbg.gif); background-repeat: repeat-x; background-attachment: scroll; background-position: 0% 0%; font-size: 15px; color: #000000; text-indent: 7px; padding-top: 7px; padding-right: 0pt; padding-bottom: 7px; padding-left: 0pt; margin-bottom: 10px; }
merci
Partager