---
id: 60b69a66b6ddb80858c515a4
title: Step 47
challengeType: 0
dashedName: step-47
---
# --description--
Give the `white-paper` a `position` of `absolute`, a `top` of `250px`, and a `left` of `-150px` to move it into place.
# --hints--
Your `#white-paper` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#white-paper')?.position === 'absolute');
```
Your `#white-paper` selector should have a `top` property set to `250px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#white-paper')?.top === '250px');
```
Your `#white-paper` selector should have a `left` property set to `-150px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#white-paper')?.left === '-150px');
```
# --seed--
## --seed-contents--
```html