---
id: 60b69a66b6ddb80858c515ac
title: Step 55
challengeType: 0
dashedName: step-55
---
# --description--
Give the `blue-right` the correct positioning with `position` set to `absolute`, `top` set to `50%`, and `left` set to `40%`.
# --hints--
Your `#blue-right` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#blue-right')?.position === 'absolute');
```
Your `#blue-right` selector should have a `top` property set to `50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#blue-right')?.top === '50%');
```
Your `#blue-right` selector should have a `left` property set to `40%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#blue-right')?.left === '40%');
```
# --seed--
## --seed-contents--
```html