BEM 클래스 네이밍

qwe8851·2025년 7월 17일
0

💐 CSS

목록 보기
19/20
요소예시
Block.card, .modal
Element.card__title, .modal__footer
Modifier.card--active, .modal--small

.modal {
&__header {
font-weight: bold;
}

&__footer {
text-align: right;
}

&--active {
display: block;
}

&--hidden {
display: none;
}
}

profile
FrontEnd Developer with Vue.js, TypeScript

0개의 댓글