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