diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md index 0b4cdd1116..28879c9fb8 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md @@ -7,7 +7,7 @@ videoUrl: 'https://scrimba.com/c/cQd27Hr' ## Description
-To create a CSS Variable, you just need to give it a name with two dashes in front of it and assign it a value like this: +To create a CSS variable, you just need to give it a name with two dashes in front of it and assign it a value like this: ```css --penguin-skin: gray; @@ -19,7 +19,7 @@ Now you can use that variable elsewhere in your CSS to change the value of other ## Instructions
-In the penguin class, create a variable name --penguin-skin and give it a value of gray +In the penguin class, create a variable name --penguin-skin and give it a value of gray.
## Tests