From 89681f23a75bb7a3f9a5efddfa737db03215239a Mon Sep 17 00:00:00 2001 From: Resurreccion Date: Wed, 24 Oct 2018 13:43:17 -0700 Subject: [PATCH] minor grammar fix (#28100) --- .../basic-css/cascading-css-variables/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md b/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md index ea63f0010e..3dbb58cd35 100644 --- a/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md +++ b/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md @@ -3,7 +3,7 @@ title: Cascading CSS Variables --- ## Cascading CSS Variables -Cascading CSS variables officially called custom properties are entities which behave similarly to traditional variables. In that variables allow for data to be stored and updated to reflect new values later2. +Cascading CSS variables (officially called custom properties) are entities which behave similarly to traditional variables, in that variables allow for data to be stored and updated to reflect new values later2. CSS variables are defined to contain specific values and be reused throughout a document. They are set using custom property notation (e.g., `--main-color: black`) and are accessed using the `var()` function (e.g., `color: var(--main-color)`)1. Declare the CSS variable in the `:root` or `body` selectors for global access.