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 trialEdward Bryan Kene Morales
7,374 PointsSass Naming Convention
Hi guys!
I am just curios why Guil uses some sort of a pattern in naming variables in the config file. Here are some examples:
$font-weight--ultra-bold : 900;
$base__font-size: 16px;
See, the first one has double hyphen and the other one has double underscore. Is there some reason behind this or this purely personal preference?
Any help will be greatly appreciated! Cheers!
1 Answer
David Tonge
Courses Plus Student 45,640 PointsIt's call BEM.
.BLOCK{__ELEMENT[--MODIFIER]}
It's basically a naming convention to organize your code.
Edward Bryan Kene Morales
7,374 PointsEdward Bryan Kene Morales
7,374 PointsI see. So that's what BEM is. Thanks David!