---
id: 619943285a41720e6370d985
title: Step 36
challengeType: 0
dashedName: step-36
---
# --description--
Position the `.penguin-body` element `40%` from the top, and `23.5%` from the left of its parent.
# --hints--
You should give `.penguin-body` a `top` property.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('.penguin-body')?.top);
```
You should give `.penguin-body` a `top` property of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body')?.top, '40%');
```
You should give `.penguin-body` a `left` property.
```js
assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('.penguin-body')?.left);
```
You should give `.penguin-body` a `left` property of `--fcc-expected--`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body')?.left, '23.5%');
```
# --seed--
## --seed-contents--
```html