---
id: 60b69a66b6ddb80858c515a0
title: Step 43
challengeType: 0
dashedName: step-43
---
# --description--
Now position the `black-hat` element. Give it a `position` of `absolute`, with a `top` of `-150px` and a `left` of `0`.
# --hints--
Your `#black-hat` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.position === 'absolute');
```
Your `#black-hat` selector should have a `top` property set to `-150px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.top === '-150px');
```
Your `#black-hat` selector should have a `left` property set to `0`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.left === '0px');
```
# --seed--
## --seed-contents--
```html