---
id: 5d822fd413a79914d39e98ed
title: Step 37
challengeType: 0
dashedName: step-37
---
# --description--
Move the position of `.fb4` relative to where it is now by adding a `position` of `relative` and `left` of `10%` to it. Do the same for `.fb5` but use `right` instead of `left`. This will cover up the remaining white space in between the buildings.
# --hints--
You should give `.fb4` a `position` of `relative`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.fb4')?.position, 'relative');
```
You should give `.fb4` a `left` of `10%`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.fb4')?.left, '10%');
```
You should give `.fb5` a `position` of `relative`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.fb5')?.position, 'relative');
```
You should give `.fb5` a `right` of `10%`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.fb5')?.right, '10%');
```
# --seed--
## --seed-contents--
```html