Reserved space for vertical scrollbar in IE 4

IE reserves space for their vertical scrollbar. This, isn’t always very desirable … Of course, there’s no problem if you actually need the scrollbar, but when you don’t …

When you use a bgcolor1 in the body and place a div tag in it over the full width of your page with another bgcolor2, you’ll see that in the space reserved for the vertical scrollbar bgcolor1 will appear and not the desired bgcolor2.
This is b/c IE reserves that space for the scrollbar, whether you need it or not … FF on the other hand never reserves the space … the downside of this could be that when the scrollbar is needed you’ll see your page content move. But … in this example, it still is the lesser of the 2 evils ;)

So, the workaround for IE, so that it doesn’t reserve that space, is:

body {
overflow: auto;
}

HTML {
overflow: auto;
}

you need both!!