1

我的网站使用 YUI Compressor 来缩小 CSS,它正在删除 !important 前面的空格,这使得 css 声明不起作用。有没有办法阻止它这样做?

预压缩

@media screen and (max-width: 1146px) {
    #controls_zoom {display:none !important}
}
@media screen and (max-width: 1060px) {
    #controls_views {display:none !important}
}
@media screen and (max-width: 925px) {
    #controls_pagination {display:none !important}
}
@media screen and (max-width: 587px) {
    #ybNewSearchContainer {display:none !important}
}

后压缩

@media screen and(max-width:1146px){#controls_zoom{display:none!important;}}@media screen and(max-width:1060px){#controls_views{display:none!important;}}@media screen and(max-width:925px){#controls_pagination{display:none!important;}
}@media screen and(max-width:587px){#ybNewSearchContainer{display:none!important;}}

更新

在网上查看了一些帖子后,我发现这实际上是我的媒体查询部分中删除的空间and的问题。@media screen and(

4

1 回答 1

1

此错误已在更新版本的 YUI Compressor 中修复,如下所述:

http://www.456bereastreet.com/archive/201012/yui_compressor_and_css_media_queries/

此处记录了此错误:

http://yuilibrary.com/projects/yuicompressor/ticket/2528087

于 2012-03-22T22:14:24.013 回答