The act of converting content from its original format into a format capable of being displayed on the web
Manage Multiple WordPress Sites

LGPL

LGPL Category

Reduce your CSS code – Turbine

Turbine is a collection of PHP tools that enhances and simplifies the use of Cascading Style Sheets.

For example, Turbine turns this:

#foo
color:red
div.foo, div.bar
margin, padding:4px
border-radius:4px

into this:

#foo {
color: red;
}
#foo div.foo, #foo div.bar {
margin: 4px;
padding: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}

Or, simply put, you can type less and do more CSS with Turbine.

Turbine also tries to fix your code to work for as many browsers as possible.

Furthermore, Turbine also allows making plugins for it with PHP.