From 937dc23b5dea422e3abcbe8b723853716486ceff Mon Sep 17 00:00:00 2001 From: Kyle Cheung Date: Tue, 14 May 2019 09:31:03 -0400 Subject: [PATCH] fixed typos in custom css-variable challenge #36038 (#36041) * fixed typos in custom css-variable challenge * fix: Remove extra line --- .../basic-css/create-a-custom-css-variable.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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