Hey Leute,
Ich habe überall nach einer Lösung gesucht aber keine gefunden!
Ich habe allerdings selbst ein Weg gefunden:
Um eine Auswahlliste beim überfahren mit der Maus zu öffnen muss man den Wert size mit Javascript ändern, also:
<select size="1" onmouseover="this.size='4'" onmouseout="this.size='1'">
Ich habe es so verwendet:
<html>
<head>
<title>Sprache wählen</title>
<style type="text/css">
<!--
option[value=wählen] { color:black;font-weight:bold; }
option[value=de]:before { content:url("img/flag-de.png"); }
option[value=en]:before { content:url("img/flag-com.png"); }
option[value=fr]:before { content:url("img/flag-fr.png"); }
option[value=nothing] { margin-right:150px; }
-->
</style>
</head>
<body bgcolor="#000000" text="#ffffff" link="#ffffff" vlink="#ffffff">
<select size="1" onmouseover="this.size='4'" onmouseout="this.size='1'">
<option value="wählen" disabled>Sprache wählen:</option>
<option value="de" selected disabled> Deutsch</option>
<option value="en" onClick="top.location.href='en.htm';"> Englisch</option>
<option value="fr" onClick="top.location.href='fr.htm';"> Französisch</option>
<option value="nothing"></option>
</select>
</body>
</html>
Ich hoffe ich konnte helfen!!