---
id: 619be7af7b0bf60770f5d2a4
title: Step 41
challengeType: 0
dashedName: step-41
---
# --description--
Position the pseudo-element `10%` from the top and `25%` from the left of its parent.
# --hints--
You should give `.penguin-body::before` a `top` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body::before')?.top, '10%');
```
You should give `.penguin-body::before` a `left` of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body::before')?.left, '25%');
```
# --seed--
## --seed-contents--
```html