Answers for "creating global css variables"

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 "creating global css variables"

Browse Popular Code Answers by Language