---
id: 6196d00a5d7292262bc02f4c
title: Step 21
challengeType: 0
dashedName: step-21
---
# --description--
Set the `position` property of the `.back-mountain` to prevent it from taking up space in the page layout.
# --hints--
You should give `.back-mountain` a `position` of `absolute`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.back-mountain')?.position, 'absolute');
```
# --seed--
## --seed-contents--
```html