As a follow up to this question, how do I prevent Internet Explorer from loading multiple style sheets, (since I want Firefox and Chrome to load one, and IE to load the other?) Is it the order in which the references are placed, or same file names but in different folders, do I need to do an if else
type of statement, or what?
For example, will IE load both given this:
<!--[if IE]>
<link href="/Content/SiteIE.css" rel="stylesheet" type="text/css">
<![endif]-->
<link href="/Content/Site.css" rel="stylesheet" type="text/css">
– Scott Simpson Aug 18 '12 at 21:13