SyntaxFix
Write A Post
Hire A Developer
Questions
css has variables as well. You can use them like this:
css
--primaryColor: #ffffff; --width: 800px; body { width: var(--width); color: var(--primaryColor); } .content{ width: var(--width); background: var(--primaryColor); }