I'm trying to decide on technologies for a presentation layer. I have heard Sass talked about enthusiastically but am resistant to learn something new without knowing why it's better than the alternative - in this case plain CSS. Any feedback on Sass would be welcome.

Edit: This is also a good discussion on this:

SASS: The Better, More Powerful CSS

link|improve this question

I've never heard of Sass, and I can't find anything on-line about it. Chances are it's something proprietary, and will lock you in in a way that CSS was designed to prevent. – Paul Tomblin May 3 '09 at 15:47
4  
Sass generates CSS, and consequently there's no lock-in. If you wanted to abandon SASS and use pure CSS mid project, it would just be a matter of editing the generated CSS files as you traditionally would. – Bayard Randel May 3 '09 at 21:33
On top of that, SASS can convert .css to .sass files and vice versa, using a simple command-line tool, so exporting your files as normal css is easy enough. – Sam Murray-Sutton Nov 3 '09 at 15:46
Sass is also open-source (MIT licensed), so definitely not proprietary. The website is here: sass-lang.com. – nex3 Dec 11 '09 at 20:35
feedback

1 Answer

up vote 7 down vote accepted

I have a screencast that shows Sass and Compass (the Sass-based stylesheet framework) in action. It's an hour long, but it shows how Sass and Compass work and how they enable new ways of approaching website design by enabling sharing of implementation without compromising the content/presentation boundary.

link|improve this answer
2  
Compass is fantastic - highly recommended. – Carl Meyer Jul 30 '09 at 3:55
feedback

Your Answer

 
or
required, but never shown

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