We often hear “Are you using OOCSS or BEM?”
but these things are not mutually exclusive.
In fact, most of the time,
we’re… mixing them up,
customizing them to suit our own needs.
/* Callout Module */.callout {}/* Callout Module with State */.callout.is-collapsed {}
// in module-name.css.mod {border: 1px solid;}// in theme.css.mod {border-color: blue;}
Minimize
Depth of Applicability
/* 6 generations */body.article > #main > #content > #intro > p > b {}body.article #intro b {}
2013, Brad FrostAtomic Web Design
A design process based on composition
2014, Harry RobertsInverted Triangle CSS
Narrow/Broad Reach
How Many Elements?
Low/High Specificity
What Selector Weight?
Generic to Explicit
What Desired Impact?
From p {} through .text-center {}
/* Runs the risk of becoming out of date; not very maintainable. */.blue {color: blue;}/* Depends on location in order to be rendered properly. */.header span {color: blue;}/* Too specific; limits our ability to reuse. */.header-color {color: blue;}/* Nicely abstracted, very portable, doesn’t risk becoming out of date. */.highlight-color {color: blue;}
<article-componentdata-scope='article'><h2data-scope='article'>...</h2><sub-componentdata-scope='article'data-scope='sub'><!-- internals of sub only have scope='sub' --></sub-component><footerdata-scope='article'>...</footer></article-component>