---
id: 60b69a66b6ddb80858c5159d
title: Step 39
challengeType: 0
dashedName: step-39
---
# --description--
Move the `black-character` element into place by setting the `position` to `absolute`, the `top` to `30%`, and the `left` to `59%`.
# --hints--
Your `#black-character` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.position === 'absolute');
```
Your `#black-character` selector should have a `top` property set to `30%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.top === '30%');
```
Your `#black-character` selector should have a `left` property set to `59%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.left === '59%');
```
# --seed--
## --seed-contents--
```html