---
id: 619d0c1594c38c0ebae75878
title: Step 59
challengeType: 0
dashedName: step-59
---
# --description--
Target the `.eye` element with the `left` class, and position it `25%` from the left of its parent. Then, target the `.eye` element with the `right` class, and position it `25%` from the right of its parent.
# --hints--
You should use the `.eye.left` selector.
```js
assert.match(code, /\.eye\.left\s*\{/);
```
You should give `.eye.left` a `left` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.eye.left')?.left, '25%');
```
You should use the `.eye.right` selector.
```js
assert.match(code, /\.eye\.right\s*\{/);
```
You should give `.eye.right` a `right` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.eye.right')?.right, '25%');
```
# --seed--
## --seed-contents--
```html