This will work in the more recent Mozilla based browsers like FF 1.5.0.6:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
html {
overflow-y:scroll;
}
</style>
</head>
<body>
</body>
</html>
For older versions use:
Code:
<style type="text/css">
html {
height:101%;
}
* html {
height:auto;
}
</style>
Bookmarks