Non-IE6 IE7 hack
Posted
by thermal7
on Stack Overflow
See other posts from Stack Overflow
or by thermal7
Published on 2010-04-22T23:49:44Z
Indexed on
2010/04/22
23:53 UTC
Read the original article
Hit count: 291
I managed to create a page the crashes IE6 and 7 regularly as per here: http://raven-seo-tools.com/blog/2675/crash-ie6-with-only-css
I have a solution for non-IE browsers (display: inline-block), but the only way to get IE6/7 working is to use different CSS (display: inline). Normally I would have other browsers use inline-block, then in a seperate IE67 CSS file I would set display to inline.
The problem is IE67 crash as soon as they reach the display: inline-block line, so I need a way to hide this code from IE6 and 7 but not other browsers.
© Stack Overflow or respective owner