Answers for "how to dedeclare a variable and use it in css"

CSS
0

how to dedeclare a variable and use it in css

:root { 
  --text-danger: 16px; 
} 

body { 
  color: var(--text-color); 
}
Posted by: Guest on May-22-2021

Code answers related to "how to dedeclare a variable and use it in css"

Browse Popular Code Answers by Language