Hiding Vertical Scrollbar in IE





6
Date Submitted Fri. Aug. 25th, 2006 4:38 AM
Revision 1 of 1
Helper Cyber-Drugs
Tags overflow-y
Comments 1 comments
Ever created a webpage, and it didn't need a scrollbar, yet IE still displays the verticale scrollbar (but as disabled)? Well the code below will remove that problem for you. Unfortunately it is not W3C compliant code, although it does work, it's not really meant to be used.

<style type="text/css">
html{
        overflow-y: auto;
}
</style>
 

Justin Nel

Comments

Comments Another way
Mon. Aug. 28th, 2006 6:47 AM    Beginner cf_ernie

Voting