scrolly icon indicating copy to clipboard operation
scrolly copied to clipboard

Do not evenly move images in Internet Explorer

Open Turb0Dizel opened this issue 7 years ago • 0 comments

If during the mouse scrolling your images are twitching in the IE browser, apply the additional css code for your page:

/* Edge */

@supports ( -ms-accelerator:true ) { html{ overflow: hidden; height: 100%; } body{ overflow: auto; height: 100%; } }

/Ie 10-11/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { html{ overflow: hidden; height: 100%; } body{ overflow: auto; height: 100%; } }

Turb0Dizel avatar Apr 11 '18 04:04 Turb0Dizel