I'm using conditional statements to load css for a specific version of IE or any other browser.
For example, let's say I'm targeting IE7.
So I'll use this:
<!--[if IE 7]>
<link rel="stylesheet" href="/style/ie7.css" />
<![endif]-->
Now... this works when I'm using IE7 but I wanted that to also work for any other browser. When I check on firebug, this css is not loaded.
How can I make it work for IE7 and any other browser?
Thanks!