Writing efficient CSS

September 17, 2014 10:58am

30 CSS Best Practices for Beginners

Google HTML/CSS Style Guide
Great collection of short tips

Writing efficient CSS - Mozilla Developer Network [MDN]

How to structure your CSS

CSS Architectures: New Best Practices


September 25, 2014 9:09am


February 4, 2015 9:40am

Transitioning to SCSS at Scale (Etsy)

https://github.com/causes/scss-lint


February 9, 2015 9:15am

CSS Regression Testing


Mars 10, 2015 23:52pm

Sass Mixins vs Extends: The Data


Mars 13, 2015 10:20am

High-level advice and guidelines for writing sane, manageable, scalable CSS


Mars 20, 2015 5:10pm

CSS Specificity Calculator

CSS specificity rule is very important. For instance, imagine you have:

.item .text-normal {
  color: blue;
}

.text-color-color2 {
color: red;
}

And the following HTML:

<div class="item">
  <div class="text-normal text-color-color2">test</div>
</div>

Well guess what will be the color of test?
The color blue wins because the specificity is higher with the first selector (20 vs 10).


Mars 24, 2015 7:33pm

Primer - The CSS toolkit and guidelines that power GitHub


April 28, 2015 1:16am

Essential CSS positioning