最新更新 sitemap 网站制作设计本站搜索
网页设计
国外网站 韩国网站 个人主页 手提袋设计 CSS 网页特效 平面设计 网站设计 Flash CMS技巧 服装网站 php教程 photoshop 画册 服务器选用 数据库 Office
虚拟主机 域名注册 云主机 网页设计 客服QQ:8208442

CssGaga教程:css压缩技巧

日期:09-08    来源:中国设计秀    作者:cnwebshow.com

After:HIY中国设计秀

.classname{-ms-filter:"alpha(opacity=80)";filter:alpha(opacity=80)}

去除多余引号HIY中国设计秀

Before:HIY中国设计秀

@import url("mod-1.css");
@import url('mod-2.css');

After:HIY中国设计秀

@import url(mod-1.css);
@import url(mod-2.css);

Before:HIY中国设计秀

.classname{ background: url("img/icon.png"); }
.classname{ background: url('img/icon.png'); }

After:HIY中国设计秀

.classname{background:url(img/icon.png)}
.classname{background:url(img/icon.png)}

不影响正常的引号HIY中国设计秀

Before:HIY中国设计秀

.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}

After:HIY中国设计秀

.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}

对HACK的影响支持常用HACKHIY中国设计秀

Before:HIY中国设计秀

#element {
    width: 1px;
    width: 2px9;
    *width: 3px;
    #width: 3px;
    _width: 4px;
}

After:HIY中国设计秀

#element{width:1px;width:2px9;*width:3px;#width:3px;_width:4px}

不支持以下HACK
html >/**/ body p {
    color: blue;
}
#elem {
    width: 100px; /* IE */
    voice-family: ""}"";
    voice-family:inherit;
    width: 200px; /* others */
}