---
id: 60b69a66b6ddb80858c515c4
title: Step 86
challengeType: 0
dashedName: step-86
---
# --description--
Time to style your `eyes` elements. Use a `class` selector to set the `width` to `35px`, the `height` to `20px`, the `background-color` to `#8B4513`, and the `border-radius` to `20px 50%`.
# --hints--
You should create a `.eyes` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('.eyes'));
```
Your `.eyes` selector should have a `width` property set to `35px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.eyes')?.width === '35px');
```
Your `.eyes` selector should have a `height` property set to `20px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.eyes')?.height === '20px');
```
Your `.eyes` selector should have a `background-color` property set to `#8B4513`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.eyes')?.backgroundColor === 'rgb(139, 69, 19)');
```
Your `.eyes` selector should have a `border-radius` property set to `20px 50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.eyes')?.borderRadius === '20px 50%');
```
# --seed--
## --seed-contents--
```html