My HTML page includes the following configured DIV:
<div id="contentDiv" style="padding-top: 20px; padding-left: 20px; overflow: auto; height: 100%;" >
The content within this DIV is large enough to require a vertical scrollbar. When viewed in IE, the page appears correctly. However, when viewed in FF, the bottom of the scrollbar extends beyond the bottom of the page by the amount of padding-top set (i.e. 20px). Is there a solution to maintain the padding-top while ensuring that the full scrollbar displays in FF? Thank you.