Bonjour..
c'est simple , aucun style ne s'applique a mon select alors que sur FF c'est parfait ...
y'a un truc de particulier a faire ??
mon code ..
CSS:
Ma page (du php)
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 .select_frm { background: url(../img/field_bg.gif) bottom repeat-x; border: 2px solid #2C65A2; height: 22px; margin: 2px 0; color: #2C65A2; font-weight: bold; }
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 <?php echo '<select size=1 name="sel-dest-1" class="select_frm">'."\n"; echo '<option value="-1">--liste destinations--</option>'."\n"; $result = mysql_query("SELECT DISTINCT ville_ann FROM tb_annonces" ); while($data = mysql_fetch_array($result)) { echo '<option value="'.$data[0].'">'.$data['ville_ann']; echo '</option>'."\n"; } echo '</select>'."\n"; ?>j'vois pas ...
Partager