Liste clickable

Fermé
mounir234 Messages postés 174 Date d'inscription mercredi 28 février 2007 Statut Membre Dernière intervention 1 mars 2016 - 17 juil. 2007 à 01:09
jcbetin Messages postés 339 Date d'inscription lundi 9 juillet 2007 Statut Membre Dernière intervention 9 août 2011 - 17 juil. 2007 à 09:43
bonsoir tout le monde,
je cherche a faire une liste clickable. par example :
<select name="menu1">
<option><a href=www.google.com>google</a></option>
<option><a href=www.yahoo.com>yahoo</a></option>
.
.
.
</select>
merci de votre réponce.

1 réponse

jcbetin Messages postés 339 Date d'inscription lundi 9 juillet 2007 Statut Membre Dernière intervention 9 août 2011 75
17 juil. 2007 à 09:43
en css:


.lien:link{
font-family: verdana, arial, sans-serif;
color: white;
font-size:12;
text-align: center;
}

.lien:visited{
font-family: verdana, arial, sans-serif;
color: blue;
font-size:12;
text-align: center;
}

.lien:hover{
font-family: verdana, arial, sans-serif;
color: #CC0000;
font-size:12;
text-align: center;
}



dans le html:
<select name="menu1">
<option><a href="menu1.html" class="lien">menu1</a></option>
<option><a href="menu2.html" class="lien">menu2</a></option>
<option><a href="menu3.html" class="lien">menu3</a></option>
</select>

0