2020-02-25 22:53:07 -06:00
---
id: 5d8a4cfbe6b6180ed9a1c9e3
title: Part 6
challengeType: 0
2021-01-13 03:31:00 +01:00
dashedName: part-6
2020-02-25 22:53:07 -06:00
---
2020-11-27 19:02:05 +01:00
# --description--
2020-02-25 22:53:07 -06:00
You are now looking at the stylesheet that you linked to earlier. At the top of this file, target the `body` of the HTML document and give it a `background-color` of `#ccc` .
2020-11-27 19:02:05 +01:00
# --hints--
2020-02-25 22:53:07 -06:00
2020-11-27 19:02:05 +01:00
test-text
2020-02-25 22:53:07 -06:00
2020-11-27 19:02:05 +01:00
```js
const body = code.match(/body\s*{[\s\S]+?[^}]}/g)[0];
assert(/background-color\s*:\s*#ccc \s*(;|})/gi.test(body));
2020-02-25 22:53:07 -06:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2020-02-25 22:53:07 -06:00
2020-11-27 19:02:05 +01:00
## --before-user-code--
2020-02-25 22:53:07 -06:00
```html
<!DOCTYPE html>
<html>
<head>
<title>D3 Dashboard</title>
</head>
<body>
<div class="dashboard"></div>
</body>
</html>
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2020-02-25 22:53:07 -06:00
2020-11-27 19:02:05 +01:00
```html
<style>
2020-02-25 22:53:07 -06:00
2020-11-27 19:02:05 +01:00
</style>
```
# --solutions--
2020-02-25 22:53:07 -06:00
```html
<style>
body {
background-color: #ccc ;
}
</style>
```