I know this is kinda of a stupid question, but I've been searching google and I can't find any answers:/ So what's the difference between sass and compass, sass and scss. I'm getting really confused by this.

Thanks for any information:)

link|improve this question
feedback

2 Answers

At the risk of oversimplification, Compass is a framework while SASS is a language abstraction. You write SASS code (and compile it to standard CSS) within the Compass context. SCSS is simply the most recent form of the SASS language. It was created for the sole purpose of being more CSS-like in its syntax, as far as I can tell. All the syntactic sugar of SASS, but more familiar to front end developers comfortable with CSS.

link|improve this answer
oh I get it now, thanks! I would vote up if I could :/ – Junxuan Ng Nov 8 '10 at 7:13
5  
If the answer is sufficient, just marking it as the answer would fine. – Rob Wilkerson Nov 8 '10 at 16:28
feedback

I've provided a TLDR answer:

Compass is essentially a SASS library. It uses the raw language of sass and creates common reusable functions.

From the website:

Compass uses Sass.

Sass is an extension of CSS3 which adds nested rules, variables, mixins, selector inheritance, and more. Sass generates well formatted CSS and makes your stylesheets easier to organize and maintain.

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.