---
id: 619d03dadadb6509a16f4f5f
title: Step 52
challengeType: 0
dashedName: step-52
---
# --description--
Target the `.chin` element, and give it a `width` of `90%`, height of `70%`, and `background-color` of `white`.
# --hints--
You should use the `.chin` selector.
```js
assert.match(code, /\.chin\s*\{/);
```
You should give `.chin` a `width` property.
```js
assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.chin')?.width);
```
You should give `.chin` a `width` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.chin')?.width, '90%');
```
You should give `.chin` a `height` property.
```js
assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.chin')?.height);
```
You should give `.chin` a `height` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.chin')?.height, '70%');
```
You should give `.chin` a `background-color` property.
```js
assert.notEmpty(new __helpers.CSSHelp(document).getStyle('.chin')?.backgroundColor);
```
You should give `.chin` a `background-color` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.chin')?.backgroundColor, 'white');
```
# --seed--
## --seed-contents--
```html