fix(curriculum): Update CSS variable fallback syntax question in CSS Colors Quiz (#57914)

This commit is contained in:
Abubakar
2025-01-04 00:21:52 +01:00
committed by GitHub
parent 4a31ae2da1
commit dc5fad17cc
@@ -419,7 +419,7 @@ Which of the following is the correct syntax to create a CSS variable with a fal
```css
.element {
color: var(--main-color, red);
color: var(--main-color; red);
}
```