Hallo,
kann mir jemand sagen, warum eine Dropdown-Liste immer eine Leerzeile produziert? Ich würde die gern weglassen, weiß aber nicht wie....
<html>
<head></head>
<body>
<table border="1">
<tr>
<td>
<form>
<select name="test">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</form>
</td>
</tr>
<tr>
<td><textarea cols="40" rows="5"></textarea></td>
</tr>
</table>
</body>
</html>