Answers for "BEM example css"

CSS
7

bem css

/* Block component */
.btn {}

/* Element that depends upon the block */ 
.btn__price {}

/* Modifier that changes the style of the block */
.btn--orange {} 
.btn--big {}
Posted by: Guest on July-19-2020
1

BEM example css

.form { }
.form--theme-xmas { }
.form--simple { }
.form__input { }
.form__submit { }
.form__submit--disabled { }
Posted by: Guest on July-10-2021

Browse Popular Code Answers by Language