html - Remove horizontal scrolling in IE 8-10 using overflow-x:hidden -
on firefox, chrome , safari, following css sets width of document screen size, , clips outside of it.
body, html { overflow-x:hidden; width:100%; }
this allows create background elements larger width of documents , have them not change final size of document.
unfortunately ie doesn't seem allow approach (i've tested ie 8-10), , though supports overflow-x , wont show scroll-bar, can still scroll horizontally highlighting content , dragging right.
is there anyway work in ie?
ie not support overflow element in css
you have use max-height property element.
Comments
Post a Comment