From d02dda9dc6663d0c6497fd406ad83aeeef601432 Mon Sep 17 00:00:00 2001 From: Matias Osorio <65029771+matiasosorio1999@users.noreply.github.com> Date: Mon, 12 Sep 2022 02:44:14 -0400 Subject: [PATCH] fix(curriculum): update description on step 15 of Building a City Skyline (#47501) Update 5d822fd413a79914d39e98d7.md --- .../5d822fd413a79914d39e98d7.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98d7.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98d7.md index 6c0397c69cb..a99a0ca5b7e 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98d7.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-variables-by-building-a-city-skyline/5d822fd413a79914d39e98d7.md @@ -7,7 +7,9 @@ dashedName: step-15 # --description-- -To use a variable, put the variable name in parentheses with `var` in front of them like this: `var(--variable-name)`. Add your variable as the value of the `background-color` property of the `.bb1a` class. Whatever value you gave the variable will be applied to whatever property you use it on. In this case, your variable has the value of `#999`. So `#999` will be used as the value for the `background-color` property. +To use a variable, put the variable name in parentheses with `var` in front of them like this: `var(--variable-name)`. Whatever value you gave the variable will be applied to whatever property you use it on. + +Add the variable `--building-color-1` you created in the previous step as the value of the `background-color` property of the `.bb1a` class. # --hints--