Day 1: custom properties and fallbacks
posted on
It’s time to get me up to speed with modern CSS. There’s so much new in CSS that I know too little about. To change that I’ve started #100DaysOfMoreOrLessModernCSS. Why more or less modern CSS? Because some topics will be about cutting-edge features, while other stuff has been around for quite a while already, but I just have little to no experience with it.
You can pass a second value to the var()
CSS function which acts as a fallback for when the property has not been set.
Fallbacks
div {
background-color: var(--not-set, #000);
}
/* Result: #000 background */
The fallback can also be a custom property (with its own fallback).
div {
background-color: var(--not-set, var(--also-not-set, #00F));
}
/* Result: #00F background */
When Fallbacks fail
If you're not working with custom properties and you set a valid value for a property followed by another declaration with an invalid value, the second declaration will be ignored.
div {
background-color: #F00;
background-color: blahaha;
}
/* Result: #F00 background */
When the value in the second declaration is a custom property that doesn't exist, the declaration is not ignored. Either the property’s inherited value or its initial value, depending on whether the property is inherited or not, will be used instead.
div {
background-color: #F00;
background-color: var(--not-set);
}
/* Result: transparent background */
Further reading
- CSS Custom Properties Fail Without\_Fallback
- Day 28: custom properties and web components
- Day 29: !important custom properties
- Day 41: custom properties and url()s
- !important on MDN
Overview: 100 Days Of More Or Less Modern CSS