我怎么能编译这个CSS

时间:2016-06-11 14:20:57

标签: php css compilation sass less

我使用了大量插件的Socialengine(Zend Framework),但其中一个插件有不同的CSS。

事实上,有许多CSS级联,但不是更少或sass文件。

我的文件interface JustAInterface { void printanything(); } class OtherClass { //Declaring Variable Outside of All Methods int k = 5; void dosomething() { //Declaring Variable Inside the Method int i = 10; JustAInterface obj = new JustAInterface() { @Override public void printanything() { i = 10; k = 20; } }; } } public class AnotherRough { public static void main(String args[]) { OtherClass otherObj = new OtherClass(); otherObj.dosomething(); } } 如下所示:

style.css

那么我如何手动编译这个有一个干净的CSS文件呢? 这种类型的CSS有一个名字吗?

谢谢

1 个答案:

答案 0 :(得分:1)

因为我对 socialengine 脚本没有更多的了解,但它在css编译中使用 CSScaffold 。 有关详细信息,请查看repository