---
id: 6140d36b8b747718b50d4b7a
title: Step 13
challengeType: 0
dashedName: step-13
---
# --description--
Set the `.cabin` to have a `transform-origin` property of `50% 0%`. This will set the origin point to be offset `50%` from the left and `0%` from the top, placing it in the middle of the top edge of the element.
# --hints--
Your `.cabin` selector should have a `transform-origin` property set to `50% 0%`.
```js
const transformOrigin = new __helpers.CSSHelp(document).getStyle('.cabin')?.transformOrigin;
assert(transformOrigin === '50% 0%' || transformOrigin === '50% 0% 0px');
```
# --seed--
## --seed-contents--
```html