I'm working on a Python-based project. I want to use some CSS preprocessor language which is based on CSS like LESS or Sass (SCSS), but which one should I use when doing a non-Ruby project?

Sass seem to have a more features, but it is also tightly integrated with Haml package (and rails?).

Are those features worth it?

Are both mature enough for production usage?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 42 down vote accepted

Sass generates valid CSS, so it doesn't matter if you're working on a non-Ruby project. I've used it with several PHP projects. Sass and Compass work great as stand-alone tools, as demonstrated in this tutorial about integrating Compass with Django.

Sass and Haml are now seperate projects, so no worries about being tightly integrated (not that they were when they were the same project).

Sass does indeed have more features and it is also more elegantly designed as a true superset of CSS. The new SCSS syntax should be immediately familiar to those experienced with CSS. The one advantage Less used to have over Sass was the CSS syntax. The developers of Sass recognised this and came up with SCSS as the solution. Both the older whitespace-sensitve Sass syntax and the SCSS syntax are interoperable, so there are no compatibility problems. You can have half of your project in Sass syntax and half in SCSS and it'll still compile.

Sass also has the advantage of the superb Compass meta-framework of which for me the highlight is the Susy extension. There are even Django specific extensions for Compass appearing.

Here's a nice article discussing a refactoring of the digg.com stylesheet using SCSS.

Yes, the extra features in Sass are definitely worth it, as is the superior design.

Yes, Sass is definitely mature enough for production use; it is at version 3 with a strong community of users and very active, responsive developers.

Chris Eppstein, creator of Compass, has put together a page comparing Sass and Less.

link|improve this answer
Although I do really like this post and agree with it, the thing that turned me off of SCSS is that the tools aren't truly standalone. Compass requires me to install Ruby, which is a deal-breaker when I can use LESS in an ASP.NET project with SimpLESS with no additional tools to download. – Mike B Jan 6 at 11:34
There are similar tools for Sass: - mhs.github.com/scout-app - compass.handlino.com - incident57.com/codekit (Mac-only) – Charles Roper Jan 6 at 15:35
feedback

There are also now two Python scss parsers:

And one for Javascript

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.