6

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

.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: Expected expression, found '0' */

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

有没有像上面那样使用带有 CSS3 属性的 StyleBundle 的解决方案?

谢谢你。

4

2 回答 2

3

优化命名空间中有已知的错误会导致它在 CSS3 上失败。错误报告在这里这里。我能提供的唯一建议是要么自己压缩它们,然后给样式包提供 .min 文件,以便在提供优化内容时使用,或者使用不同的缩小方法。

于 2013-01-10T17:09:34.733 回答
0

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

于 2017-03-28T13:13:56.723 回答