Mit gültigem HTML und CSS (Stichwort) Validator und der passenden
CSS-Eigenschaft overflow, Informationen dazu natürlich auch in
SELFHTML.http://de.selfhtml.org/css/eigenschaften/positionierung.htm#overflow
bevor Du unnötig suchst, ähnlich wie bei der height-Eigenschaft muß
auf overflow im MSIE für das übergeordnete Element (hier html) fest-
gelegt werden, eine kurze Beispielseite:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>overflow</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta http-equiv="content-style-type" content="text/css">
<style type="text/css">
<!--
body, html { overflow: auto; }
-->
</style>
</head><body>
<p>overflow</p>
</body></html>
Viele Grüße,
Stefan