How To Solve Ie9 Scrolling Repaint Issue With Fixed-position Parent That Has -ms-transform:translate?
I have a parent div that has -ms-transform: translateX(50%) translateY(40%); position: fixed; My inner child div has fixed-height and overflow: auto In IE9 (only real IE9), this ca
Solution 1:
A bit late but hey, this worked for me and could work for anyone else coming here. I replaced my "-ms-transform" with "-ms-filter"
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
Solution 2:
Try to play with the overflow property - set the overflow property to scroll. I.e, overflow-y:scroll
and see if that fixes it.
Post a Comment for "How To Solve Ie9 Scrolling Repaint Issue With Fixed-position Parent That Has -ms-transform:translate?"