We all experience how CSS preprocessors like SASS or LESS ease working on projects with complex styles.

Roole is another alternative that is inspired from SASS, LESS + Stylus and only requires JavaScript to work.

Roole

It has vendor-prefixing built-in so there is no need to use them, supports variables + conditional logic and allows us to define the format we want to code CSS.

Roole can work both on the client or server-side (nodejs) and it is documented well.

0 Shares:
Leave a Reply

Your email address will not be published. Required fields are marked *

sixteen + seven =

This site uses Akismet to reduce spam. Learn how your comment data is processed.

You May Also Like

Remove unused CSS

Often we think of using some class or id within a CSS but later on decide not to use them finally. But several times we forget to delete those classes from the CSS file. This may not be a problem for sites where the use of CSS is very less. But this may be accountable for much junk lines within your CSS which are unnecessary and unwanted.

Detect screen size with jQuery and apply a CSS style

Sometimes we need to format the content differently according to the screen resolution of the user. One of the ways to do this is to simply detect the screen width using the screen.width property and change the stylesheet.