bem css

Solutions on MaxInterview for bem css by the best coders in the world

showing results for - "bem css"
Theon
28 Jan 2019
1/* Block component */
2.btn {}
3
4/* Element that depends upon the block */ 
5.btn__price {}
6
7/* Modifier that changes the style of the block */
8.btn--orange {} 
9.btn--big {}
Fabio
06 Nov 2018
1.form { }
2.form--theme-xmas { }
3.form--simple { }
4.form__input { }
5.form__submit { }
6.form__submit--disabled { }