DEV Community

Cover image for Understanding CSS Variables
⚡ Nirazan Basnet ⚡
⚡ Nirazan Basnet ⚡

Posted on • Originally published at blog.yipl.com.np

Understanding CSS Variables

CSS variables, or “CSS Custom Properties”. It allows you to work with variables directly in CSS. They are very useful for reducing repetition in CSS, and also for powerful runtime effects like theme switching and has various poly filling future CSS features. It believes in the principle DRY — Don’t Repeat Yourself. With the help of CSS Variables, you can localize values and simplify initial development, iterative testing, and later maintenance all in one go. It is also officially a part of the CSS specification. So, let’s explore.

Basic declaration

Any CSS property --color, size, position, etc.-- can be stored in a CSS variable. Their names are all prefixed with --, and you declare them by adding them to an element right where you add its other styles:

For example:

/* Define CSS variables and scope */
:root {
 --maincolor: black;
 --secondarycolor: red;
}

/* Use CSS Variables */
body {
 background: var(--maincolor);
 color: white;
}

body p {
 background: var(--secondarycolor);
}
Enter fullscreen mode Exit fullscreen mode

Here I’ve defined two CSS variables which have color values inside the :root selector. The variables are defined inside and are scoped with their respective selectors. Note that CSS variables are case sensitive unlike other CSS properties, so --maincolor and --Maincolor are considered two different variables.

And to use a CSS variable, we need to wrap its value in the var() function and pass the variable name into it. After that, we can select the desired CSS property and utilize this variable's value.

For example:

a {   
 color: var(--maincolor);  
 text-decoration-color: var(--secondarycolor); 
}
Enter fullscreen mode Exit fullscreen mode

Another cool feature of CSS Variables is we can even set one CSS variable’s value to another CSS variable in whole or in part:

For Example:

/* Define CSS variables and scope */
:root {
 --darkfont: green; 
 --darkborder: 5px dashed var(--darkfont);
}

/* Use CSS Variables */
.container {
 color: var(--darkfont);
 border: var(--darkborder);
}
Enter fullscreen mode Exit fullscreen mode

Scoping and the Cascade

CSS variables act like a normal style property; a variable is available anywhere down the cascade.

For example, these variables can be used by anything on the entire page:

root {
 --darkborder: 5px solid black;
}

body {
 --darkborder: 1px solid darkred;
}

img{
 border: var(--darkborder); /* img border will be 1px solid darkred */
}
Enter fullscreen mode Exit fullscreen mode

Here we have defined the same --darkborder CSS variable twice inside two different selectors. Due to cascading rules, the one inside the BODY selector has a higher specificity and wins out when used in the IMG element.

CSS Variables also inherit by default, so the value of a CSS property defined on a parent element also applies down to the children when used in those elements.

For example:

:root {
 --myborder: 2px solid black;
}

ul {
 margin: 0;
 border-left: var(--myborder);
}

ul ul {
 margin-left: 30px;
}
Enter fullscreen mode Exit fullscreen mode

But we can also disable the inheritance property by setting it to the special value initial inside the desired selector. From the above example

:root {
 --myborder: 2px solid black;
}

ul {
 margin: 0;
 border-left: var(--myborder);
}

ul ul {
 --myborder: initial; /* reset --myborder variable */
 margin-left: 30px;
}
Enter fullscreen mode Exit fullscreen mode

Advantages in Media Queries

We can use this type of pattern for the CSS Variables media queries where all change is happening in-browser, and the variables do know about the conditions under which they are being used. And this prevents us from the repetition of the selectors rather than the properties.

For Example:

body {  
 --primary: #7F583F;
 --secondary: #F7EFD2; 
}

a {
 color: var(--primary);
 text-decoration-color: var(--secondary); 
}

@media screen and (min-width: 480px) {   
 body {    
  --primary:  #F7EFD2;   
  --secondary: #7F583F;  
 } 
}
Enter fullscreen mode Exit fullscreen mode

View the codepen DEMO

Setting fallback values when a CSS variable is undefined

background: var(--primarybg, white); 
/* Normal value as fallback value */

font-size: var(--defaultsize, var(--fallbacksize, 36px)); 
/* var() as fallback value */
Enter fullscreen mode Exit fullscreen mode

To provide fallback values for browsers that don’t support the feature, you could do something like the following:

background: white; 
/* background value for browsers that don't support CSS variables */
background: var(--primarybg, white);
Enter fullscreen mode Exit fullscreen mode

Everyone will be happy now!

Browser Support

Alt Text

Well, that's a lot of green signals to test it out.

Conclusion

By coming this far I hope you are excited to explore the advantages of CSS Variables. So I suggest you give it a try in your project and enjoy!

If you have found this blog very helpful then please feel free to share your thoughts and opinions and leave me a comment if you have any problems or questions.

Till then,
Keep on Hacking, Cheers

Top comments (6)

Collapse
 
nuxodin profile image
Tobias Buschor

With this polyfill, IE11 also understands css-variables:
github.com/nuxodin/ie11CustomPrope...

Collapse
 
nirazanbasnet profile image
⚡ Nirazan Basnet ⚡

Thanks :)

Collapse
 
jannikwempe profile image
Jannik Wempe

Nesting of selectors, Mixins, additional operators ... just to name a few. So there are other features to sass or less than just declaring variables.

Collapse
 
nirazanbasnet profile image
⚡ Nirazan Basnet ⚡

Thanks @pinutz for the explanation :)

Collapse
 
bernardetteh profile image
bernardetteh

Great explanation!

Collapse
 
nirazanbasnet profile image
⚡ Nirazan Basnet ⚡

Thankyou :)