Answers for "how to add variables in the css"

CSS
1

how to use variables in css

:root {
  --clr-primary-1: hsl(205, 86%, 17%);
}

.container{
  background-color: var(--clr-primary-3);
}
Posted by: Guest on February-11-2021

Code answers related to "how to add variables in the css"

Browse Popular Code Answers by Language