我使用了大量插件的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有一个名字吗?
谢谢