--- id: 5d8a4cfbe6b6180ed9a1c9e7 title: Part 10 challengeType: 0 --- ## Description
Give the container some space by adding a `padding` of `100px 10px` to the `body` element.
## Instructions
## Tests
```yml tests: - text: test-text testString: const body = code.match(/body\s*{[\s\S]+?[^}]}/g)[0]; assert(/padding\s*:\s*100px\s*10px\s*(;|})/g.test(body)); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```