CSS 모듈 활용
웹 스타일 모듈화 ▸ JS 파일에서 불러오기
[name].module.css.[파일이름]\_[클래스이름]\_\_[해시값] {
/* ... */
}모듈 활용 방법
.error {
background-color: #e64a19;
}컴파일 결과
Last updated
웹 스타일 모듈화 ▸ JS 파일에서 불러오기
[name].module.css.[파일이름]\_[클래스이름]\_\_[해시값] {
/* ... */
}.error {
background-color: #e64a19;
}Last updated
<button type="button" class="Button_error_ax7yz">오류</button>