Class 4 – CSS & Javascript Workaround for IE6
This code can be put in the <head> element of your page, and will only be interpreted by the IE6 browser. So you can use it to load special stylesheets or javascripts that will override the other styles or scripts you have set.
<!--[if lte IE 6]> <link href="/css/ie_hacks.css" media="screen" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="/js/frontend/iepngfix_tilebg.js"></script> <![endif]-->
To see more information about these “conditional comments”, check out this page on the quirksmode.org website.
Related posts:
Tags: class 4