csswizardry/CSS-Guidelines

Suggest include output of SCSS - end of article.

pepfreetest opened this issue · 0 comments

After suggested Sass nesting, perhaps demonstrate the result. For example:

If you were to Sass this up you’d write it as:

.header{}
.site-nav{
li{}
a{}
}

This would output the following vanilla css, with correct selector specificity:

.header{}
.site-nav li{}
.site-nav a{}