---
id: 5a9d72a1424fe3d0e10cad15
title: Change a variable for a specific area
challengeType: 0
videoUrl: https://scrimba.com/c/cdRwbuW
forumTopicId: 301085
localeTitle: Изменение переменной для определенной области
---
## Description
Когда вы создаете переменные в :root
они задают значение этой переменной для всей страницы. Вы можете переписать эти переменные, установив их снова в пределах определенного элемента.
## Instructions
Измените значение --penguin-belly
на white
в классе penguin
.
## Tests
```yml
tests:
- text: The penguin
class should reassign the --penguin-belly
variable to white
.
testString: assert(code.match(/.penguin\s*?{[\s\S]*--penguin-belly\s*?:\s*?white\s*?;[\s\S]*}/gi));
```
## Challenge Seed
## Solution
```html
var code = ".penguin {--penguin-belly: white;}"
```