ASP.NET捆绑和缩小 - CSS3属性失败

时间:2013-01-10 16:37:44

标签: asp.net css minify

我有几个css clases使用如下属性:

.rfs_left_btn
{
width: 176px;
height: 20px;
background: #fefefe;
background: -moz-linear-gradient(top,  #fefefe 0%, #fafafa 48%, #f1f1f1 50%, #e9e9e9 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(48%,#fafafa), color-stop(50%,#f1f1f1), color-stop(100%,#e9e9e9));
background: -webkit-linear-gradient(top,  #fefefe 0%,#fafafa 48%,#f1f1f1 50%,#e9e9e9 100%);
background: -o-linear-gradient(top,  #fefefe 0%,#fafafa 48%,#f1f1f1 50%,#e9e9e9 100%);
background: -ms-linear-gradient(top,  #fefefe 0%,#fafafa 48%,#f1f1f1 50%,#e9e9e9 100%);
background: linear-gradient(top,  #fefefe 0%,#fafafa 48%,#f1f1f1 50%,#e9e9e9 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e9e9e9',GradientType=0 );
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; /* Drop shadow*/
-webkit-box-shadow: 0px 1px 1px #cecece;
-moz-box-shadow: 0px 1px 1px #cecece;
box-shadow: 0px 1px 1px #cecece;
margin-bottom: 5px;
}

创建如下的StyleBundle时:

StyleBundle bundle_cssSession = new StyleBundle("~/Css/bundle_session");
bundle_cssSession.Include("~/Styles/_catalog.css");   

System.Web.Optimization.Styles.Render(“〜/ Css / bundle_session”)失败,并显示以下错误:

/ * 缩小失败。返回未经授权的内容。 (2196,14):运行时错误CSS1036:预期表达式,找到'0'  * /

如果我删除了多个“背景”属性(并且只留下其中一个属性),则缩小工作。

是否有使用StyleBundle和CSS3属性的解决方案,如上所述?

谢谢。

2 个答案:

答案 0 :(得分:2)

优化名称空间中存在已知的错误,导致它在CSS3上失败。错误报告为herehere。我可以提供的唯一建议是自己压缩它们并为样式包提供.min文件,以便在提供优化内容或使用其他缩小方法时使用。

答案 1 :(得分:0)

也许,它可能是一种错误的模式(或者像我们在巴西所说的'gambiarra'),但我修复了它将渐变标记移动到内联。