Answers for "add css variables without global"

CSS
1

add css variables without global

div {
  --color: #fff;
}

div .child {
  color: var(--color);
}
Posted by: Guest on January-08-2022

Code answers related to "add css variables without global"

Browse Popular Code Answers by Language