how to get rid of horizontal scrollbars in iframes in IE

add the following CSS to the document that is loaded inside the iframe:-

html { overflow-x: hidden; }

this worked for me in an XHTML transitional document on IE 6. Note this removes horizontal scrolling altogether.

Leave a Reply