Skip to content

Instantly share code, notes, and snippets.

@amiskov
Last active February 1, 2016 08:47
Show Gist options
  • Save amiskov/280f02d90c7f6cba34c3 to your computer and use it in GitHub Desktop.
Save amiskov/280f02d90c7f6cba34c3 to your computer and use it in GitHub Desktop.
BEM list wrong
/* HTML-код:
<ul class="cms-list">
<li class="cms-list__item cms-list__item_square">List Item 1 text</li>
<li class="cms-list__item cms-list__item_square">List Item 2 text</li>
</ul>
*/
.cms {
&-list {
padding: 0 0 0 7rem;
&__item {
&_disc {
list-style-type: disc;
}
&_square {
list-style-type: square;
}
&_dec {
list-style-type: decimal;
}
}
&_dec {
padding: 0 0 0 3rem;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment