From 791e589c930922df9872b2ac485eea91e900ba55 Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Tue, 14 May 2019 01:44:16 +0700 Subject: [PATCH] Remove tag characters (#36037) --- .../basic-css/cascading-css-variables.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md index a52a4eb1d6..69e1b075a4 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/cascading-css-variables.english.md @@ -9,7 +9,7 @@ videoUrl: 'https://scrimba.com/c/cyLZZhZ'
When you create a variable, it is available for you to use inside the element in which you create it. It also is available for any elements nested within it. This effect is known as cascading. Because of cascading, CSS variables are often defined in the :root element. -:root is a pseudo-class selector that matches the root element of the document, usually the element. By creating your variables in :root, they will be available globally and can be accessed from any other selector later in the style sheet. +:root is a pseudo-class selector that matches the root element of the document, usually the html element. By creating your variables in :root, they will be available globally and can be accessed from any other selector later in the style sheet.
## Instructions