Article introduction of Wulin.com (www.vevb.com): HTML web design: Remove IE scrollbars.
I made a page with the same size as the desktop resolution, but there is a scroll bar displayed under IE full screen (F11), but Firefox does not. How to remove the IE scrollbar? In fact, it can be solved with one attribute.Method 1: Add attribute scroll directly into the body
Codes like:
< body scroll=no >
Method 2: Use stylesheet overflow
Codes like:
HTML{overflow-x:hidden;}
Under the xhtml1-transitional.dtd standard, Body is not used as a container, but rather HTML tags. Therefore, you need to add the stylesheet to the HTML tags, and it doesn't work if you add it to the Body.
Under the html transitional standard, it can be used in Body containers, code such as:
< body style=overflow-x:hidden >
This way you can remove the IE scrollbar.