본문 바로가기
Frontend#Frontend#CSS조회 22

CSS Modules란?

정의

컴포넌트별로 클래스명을 격리하는 CSS 시스템. 빌드 타임에 해시 접미.

CSS Modules란?

// Card.module.css
.title { font-weight: bold; }
// React
import styles from './Card.module.css';
<h1 className={styles.title}>

클래스명이 Card_title_abc123처럼 유니크해져 충돌 0.

🔗 함께 보면 좋은 용어

Frontend 전체 →