我正在创建一个 MVC 4 应用程序。这些样式在浏览器中部分起作用。但是,我将其设置为对 IE 很好。但是许多在 IE 中运行良好的样式在 Mozilla 中都失败了。我的 _Layout.html 中有以下代码。
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
<!--[if IE]>@Styles.Render("~/Content/common.css")<![endif]-->
<!--[if !IE]>@Styles.Render("~/Content/MozSite.css") <![endif]-->
@Scripts.Render("~/bundles/jquery")
<script src="~/Scripts/jquery.unobtrusive-ajax.min.js" type="text/javascript"></script>
</head>
当我加载 FF 时,它没有选择 MozSite.css。我如何动态加载这个FF?