Fix Scrolling Render Bug in IE


/ Published in: CSS
Save to your folder(s)

This fixes a very annoying bug in IE by where when you scroll the page becomes corrupted. It relates to the way IE renders pages. This code places a null background image behind, making IE render the page differently.

*note* This can also be place on the body tag unless it already has a background.


Copy this code and paste it in your HTML
  1. html {
  2. background : url(null) fixed no-repeat;
  3. }

URL: http://www.notestips.com/80256B3A007F2692/1/NAMO5GU36H

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.