Hallo,
ich brauche eine dynamische Liste. Mit folgendem Code funktionert es einwandfrei im IE6. Mozilla (2.0.0.9) macht totalen Quatsch beim ändern der Fenstergröße.
Hat jemand einen Tip?
--------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>
table and select
</title>
</head>
<body style='positon:absolute; height:50%'>
<table border='1' style='position:relative; table-layout:fixed; height:90%'>
<tr>
<td style='height:10%'>
<p>Caption</p>
</td>
</tr>
<tr>
<td style='height:90%'>
<div style="height:90%; position: relative;">
<select id='IDListFields' size="500" style="height:70%; position: relative;">
<option value="0">A</option>
<option value="1">B</option>
<option value="2">C</option>
<option value="3">D</option>
<option value="4">E</option>
<option value="5">F</option>
</select>
</div>
</td>
<td style='height:90%'>
<div style="height:70%; position: relative; border:solid red 1px">
</div>
</td>
</tr>
</table>
</body>
</html>