CSS Patcher -


MIT
跨平台
PHP

软件简介

一个轻量级PHP类库, 用于使用类似LESS的语法来格式化CSS.
根据提供的模板文件能自动将CSS3语法编译成支持多浏览器的CSS.

e.g.

BEFORE

div { border-radius: 3px; }
div.test {border-radius: 3px 3px 0 0; }

AFTER

div {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

div.test {
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}