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 96da0ea836..ea63f0010e 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 @@ -32,6 +32,15 @@ Using the variable: var(--custom-name) ``` +### Solution + +In the ```:root``` selector we need to declare the ```--penguin-belly``` variable and give it the value of ```pink```: + +```css + :root { + --penguin-belly: pink; + } +``` ### Sources