---
id: 6196d2c0f22ca0293107c048
title: Step 25
challengeType: 0
dashedName: step-25
---
# --description--
Give the `.sun` element a `width` and `height` of `200px`, and a `background-color` of `yellow`.
# --hints--
You should use the `.sun` selector.
```js
assert.match(code, /\.sun\s*\{/);
```
You should give `.sun` a `width` of `200px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.width, '200px');
```
You should give `.sun` a `height` of `200px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.height, '200px');
```
You should give `.sun` a `background-color` of `yellow`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.backgroundColor, 'yellow');
```
# --seed--
## --seed-contents--
```html