Thread dropdown liste (3 answers)
Opened by hudo at 2003-12-19 18:35

hudo
 2003-12-19 19:12
#46651 #46651
User since
2003-11-20
72 Artikel
BenutzerIn
[default_avatar]
Normale html-Auswahlliste:

<html>
<head>
<title>Text des Titels</title>
</head>
<body>

<select name="top5" size="3">
<option>Heino</option>
<option>Michael Jackson</option>
<option>Tom Waits</option>
<option>Nina Hagen</option>
<option>Marianne Rosenberg</option>
</select>

</body>
</html>


Dropdown-liste (mit size="1"):

<html>
<head>
<title>Text des Titels</title>
</head>
<body>

<select name="top5" size="1">
<option>Heino</option>
<option>Michael Jackson</option>
<option>Tom Waits</option>
<option>Nina Hagen</option>
<option>Marianne Rosenberg</option>
</select>

</body>
</html>

Quelle: selfhtml

http://selfhtml.teamone.de/html/formulare/auswahl.htm#listen

View full thread dropdown liste