0

Day 1: custom properties and fallbacks

 1 year ago
source link: https://www.matuzo.at/blog/2022/100daysof-day1/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Day 1: custom properties and fallbacks

posted on September 26., 2022

It’s time to get me up on 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 */

See on CodePen.

Further reading


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK