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