CSSPatcher.zip
一个轻量级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; } 标签:CSSPatcher CSS框架
文件列表
cssp-master.zip
(预估有个3文件)
cssp-master
cssp_prefix.cssp
2KB
cssp.php
23KB
README.markdown
1KB
暂无评论