You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It helps reduce the size of the CSS that is sent down to your users.
For example, if you use BEM naming methodology:
.media{}
.media__img{} /*Not used in current project*/
.media__img--rev{}
.media__body{}
<divclass="media"><imgsrc="logo.png" alt="Foo Corp logo" class="media__img--rev"><divclass="media__body"><h3>Welcome to Foo Corp</h3><p>Foo Corp is the best, seriously!</p></div></div>
After run selector renaming task:
.a{}
.b{}
.c{}
<divclass="a"><imgsrc="logo.png" alt="Foo Corp logo" class="b"><divclass="c"><h3>Welcome to Foo Corp</h3><p>Foo Corp is the best, seriously!</p></div></div>
The text was updated successfully, but these errors were encountered:
It helps reduce the size of the CSS that is sent down to your users.
For example, if you use BEM naming methodology:
After run selector renaming task:
The text was updated successfully, but these errors were encountered: