Hiding the Vertical Scrollbar in IE
Also related to my little signage project in the last post, one problem I encountered was the IE would insist on displaying a vertical scrollbar even though it wasn't required - and since I knew the exact pixel dimensions of the display I knew I didn't need one. It turns out there are many solutions to this on the internet, it's a common complaint when IE is rendering in standards compliant mode, and the solution is easy enough, just put:
html {
overflow: auto;
}
in your CSS file.
Print article | This entry was posted by robertc on 17/08/07 at 06:42:40 pm . Follow any responses to this post through RSS 2.0. |