We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

1man on 07/20/06


Tagged

scroll ie bug render


Versions (?)


Who likes this?

7 people have marked this snippet as a favorite

alvaroisorna
fatihturan
visualAesthetic
tavo
fael
vali29
teddyzetterlund


Fix Scrolling Render Bug in IE


Published in: CSS 


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

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.

  1. html {
  2. background : url(null) fixed no-repeat;
  3. }

Report this snippet 

You need to login to post a comment.