---
id: 619d26b12e651022d80cd017
title: Step 87
challengeType: 0
dashedName: step-87
---
# --description--
Target the `.arm` elements, and give them a `width` of `30%`, a `height` of `60%`, and a `background` of linear gradient at `90deg` from clockwise, starting at `gray`, and ending at `rgb(209, 210, 199)`.
# --hints--
You should use the `.arm` selector.
```js
assert.match(code, /\.arm\s*\{/);
```
You should give `.arm` a `width` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.arm')?.width, '30%');
```
You should give `.arm` a `height` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.arm')?.height, '60%');
```
You should give `.arm` a `background` of `linear-gradient(90deg, gray, rgb(209, 210, 199))`.
```js
assert.include(['linear-gradient(90deg,gray,rgb(209,210,199))', 'rgba(0,0,0,0)linear-gradient(90deg,gray,rgb(209,210,199))repeatscroll0%0%'], new __helpers.CSSHelp(document).getStyle('.arm')?.getPropVal('background', true));
```
# --seed--
## --seed-contents--
```html