Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Meistens reicht es wenn du Google mit den entsprechenden Stichwörtern fütterst. :)@nookie hab ich versucht aber hab keine Frage für Google auf die Kette bekommen. @Matthias Lang danke für den Hinweis (Ich wäre daran wahrscheinlich verzweifelt:)). Dann bleibt das halt so
NeeeeeeeeeeeinFalls es noch jemanden interessieren sollte: Diese Auswahlbuttondinger bei <select>, von denen ihr so schön schwafelt heißen dropdown list. Vielleicht würde man bei Google dann auch was finden....
<select name="option1" class="select">
<option>Option1</option>
<option>Option2</option>
</select>
.select {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
width: 130px;
margin-top: 3px;
margin-bottom: 15px;
color: #636363;
border: 2px solid #B5B8C8;
font-size: 12px;
background: #FFF;
}
Damit änderst du aber nicht den Auswahlbutton der Dropdownlist. Das war hier die Frage.Kleines Beispiel wie man den Style einer <select> Box ändert:
HTML
HTML:<select name="option1" class="select"> <option>Option1</option> <option>Option2</option> </select>
CSS
HTML:.select { font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; width: 130px; margin-top: 3px; margin-bottom: 15px; color: #636363; border: 2px solid #B5B8C8; font-size: 12px; background: #FFF; }