On Wed, Dec 16, 2009 at 12:01 AM, kevin <[email protected]> wrote: > > im working on a website with orbited, jquery and blueprint and page with lot > of images kept crashing [100%cpu etc] on IE7. > after commenting out this from ie.css the problem seems to be fixed. > > img {-ms-interpolation-mode:bicubic;} > > what does this line do? why is it in ie.css! is it ok to comment it out? > thanks a lot
This line ensures that IE uses a high-quality image rendering algorithm so that images that are resized don't look so grainy. It is definitely OK to comment it out. My guess is that javascript libraries that re-use and resize a lot of images put IE's image rendering to the test and that explains the 100% cpu. -- -- Christian Montoya mappdev.com :: christianmontoya.net -- You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.
