From 7a3f9b0e944bb488aac4d22460497e8950ec1981 Mon Sep 17 00:00:00 2001 From: JustinBen-Tzioni <35879294+JustinBen-Tzioni@users.noreply.github.com> Date: Thu, 14 Feb 2019 22:11:39 +0200 Subject: [PATCH] Improved clarity of sentence. (#28791) --- .../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 bdd33a47e8..a52a4eb1d6 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 @@ -7,7 +7,7 @@ videoUrl: 'https://scrimba.com/c/cyLZZhZ' ## Description
-When you create a variable, it becomes available for you to use inside the element in which you create it. It also becomes available within any elements nested within it. This effect is known as cascading. +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.