---
id: 619d1fb5d244c31db8a7fdb7
title: Step 80
challengeType: 0
dashedName: step-80
---
# --description--
Target the `.foot` elements, and give them a `width` of `15%`, `height` of `30%`, and `background-color` of `orange`.
# --hints--
You should use the `.foot` selector.
```js
assert.match(code, /\.foot\s*\{/);
```
You should give `.foot` a `width` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.width, '15%');
```
You should give `.foot` a `height` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.height, '30%');
```
You should give `.foot` a `background-color` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.backgroundColor, 'orange');
```
# --seed--
## --seed-contents--
```html