---
id: 6140d2b687a2cd17bac5730c
title: Step 12
challengeType: 0
dashedName: step-12
---
# --description--
Give the `.cabin` a `position` of `absolute`, and a `border` of `2px solid`.
# --hints--
Your `.cabin` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.position === 'absolute');
```
Your `.cabin` selector should have a `border` property set to `2px solid`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.border === '2px solid');
```
# --seed--
## --seed-contents--
```html