Im Forenarchiv gab es eine Diskussion, wie eine Scrolltabelle erstellt wird. Ich habe dazu diese Möglichkeit entwickelt:
<html>
<head>
<title>Scrolltabelle</title>
</head>
<body style="overflow-x:hidden; overflow-y:hidden;">
<div style="margin-left: 0px; margin-right:0px; overflow-x:hidden; overflow:hidden; height:21px">
<table width="100%" border="1" cellspacing="0" cellpadding="1" frame="void" rules="rows" align="center">
<colgroup> <col width="8%"> <col width="74%"> <col width="18%"> </colgroup>
<tr>
<td><center><b>1</b></center></td>
<td><center><b>2</b></center></td>
<td><center><b>3</b></center></td>
</tr>
</table>
</div>
<div style="margin-left: 0px; margin-right:0px; margin-bottom:0px; overflow-x:hidden; overflow:scroll; height:94%">
<table width="100%" border="1" cellspacing="0" cellpadding="1" frame="void" rules="rows" align="center">
<colgroup> <col width="8%"> <col width="74%"> <col width="18%"> </colgroup>
<tr>
<td><center>test</center></td>
<td>test</td>
<td><center><b>test</b></center></td>
</tr>
</table>
</div>
</body>
</html>