This is my web page which doesn’t work in IE8 but works in FF 3.6.4 and Opera 9.63 :-
<html>
<head>
<style type="text/css">
body{
max-width:10002px;
min-width:3072px;
width:10002px;
margin:0px auto;
background:#293231;
height:100%;
padding:0px;
}
</style>
</head>
<body >
</body>
</html>
No scrollbar appears at the bottom of the page in IE8
You should add a doctype declaration to your page – this will make sure most browsers behave as closely as possible the same way. At least it will eliminate one class of possible issues.
Most of the time, when it comes to scrollbars, they will appear only when content is wider/higher then the client display area, whatever the CSS rules are.