--- id: 5d8a4cfbe6b6180ed9a1c9e4 title: Part 7 challengeType: 0 --- ## Description
Next, target the `dashboard` class you created and give it a `width` of `980px` and a `height` of `500px`.
## Instructions
## Tests
```yml tests: - text: test-text testString: const dashboard = $(".dashboard"); assert(dashboard.css("width") === "980px" && dashboard.css("height") === "500px"); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```