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:)
|
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:) | ||||
|
feedback
|
|
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. | |||||||
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:
| |||
|
feedback
|