I have implemented conditional statements to load CSS specifically for IE7 or any other browser.
For instance, let's consider the case where I am targeting IE7.
In this scenario, the code looks like this:
<!--[if IE 7]>
<link rel="stylesheet" href="/style/ie7.css" />
<![endif]-->
However, while this method works well when using IE7, I would like it to work for other browsers as well. Upon checking through Firebug, I noticed that this CSS is not being loaded for other browsers.
Is there a way to make this solution compatible with IE7 as well as other browsers?
Any advice on how to achieve this would be greatly appreciated!