我正在尝试在 dotnetnuke 框架中实现媒体查询。有没有办法有条件地选择要使用的css?我试图阻止不支持媒体查询的 IE6/7/8 不访问媒体查询 CSS:
继承人并从我的代码中提取不起作用:
<%@ Register TagPrefix="ddn" TagName="MENU" src="~/DesktopModules/DDRMenu/Menu.ascx" %>
<%@ Register TagPrefix="ddn" TagName="MOBMENU" src="~/DesktopModules/DDRMenu/Menu.ascx" %>
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %>
<![if !(IE 6)|(IE 7)|(IE 8)]>
<dnn:DnnCssInclude runat="server" FilePath="mq.css" PathNameAlias="SkinPath" />
<![endif]>
<div id="wrapper">
<div id="header">
<div id="logo">
<dnn:LOGO runat="server" id="dnnLOGO" />
</div>