Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Why are you teaching scss and not sass?

I've gone through the basics of Sass and the first section of Advanced Sass and the teachers are using scss. I'm wondering why Treehouse chooses this method? If you research on google there are many pros and cons to this...I'm personally just curious as a new developer and trying to figure out what is the best way for me to move forward with my learning.

Thanks Treehouse! Keep up the great work! -Spencer

3 Answers

James Barnett
James Barnett
39,199 Points

As of Sass 3 the standard Sass syntax is SCSS. However, Sass is backward compatible with the indented syntax.

It's worth noting that the teacher of the Sass Basics course is Hampton Catlin who created the Sass language so I'm guessing it was his call to use the SCSS syntax in the Sass Basics course.

Hey Ben/Spencer,

SCSS looks a lot like regular CSS in syntax with closing properties with semi-colons, nesting those properties within curly braces, and so-forth. It might be a little easier for students to relate to for these reasons. Quite a bit of what you pick up, in terms of how things are compiled, seem to be pretty relative between SCSS and SASS though there are probably a few differences.

That's about all I have for you from what I've found with working with SCSS and SASS so far.

Thanks for the answers - it always makes sense to follow what the creators do for sure - I was just wondering why the switch.

Cheers.