css subclass
/* CSS */
.title { color #f00000;}
// New subclass called “title-large”
.title-large { font-size: 2rem;}
/* HTML implementation
<span class=”title title-large”>
*/
// New subclass called “title-small”
.title-small { font-size: .5rem;}
/* HTML implementation
<span class=”title title-small”> */