사용법
:root {
--mainBgColor: gold;
}
body {
background: var(--mainBgColor);
}
/*
대소문자를 구분함
MainBgColor !== mainBgColor
*/
이 변수는 js에서도 읽어들일 수 있습니다.
const myBg = getComputedStyle(document.documentElement).getPropertyValue("--mainBgColor")
nuxt3 처음에 나오는 페이지도 비슷하게 구현해볼 수 있다.
https://jsfiddle.net/hyuckjin/k16tego4/9/
반응형
'CSS3' 카테고리의 다른 글
clamp() (0) | 2022.12.06 |
---|---|
:is() 와 :where() (0) | 2022.05.02 |
CSS방법론 SMACSS (Scalable and Modular Architecture for CSS) (0) | 2021.08.06 |
한줄, 여러줄 말줄임 처리 (0) | 2020.11.16 |
:focus-within (0) | 2020.10.12 |