--- id: 6140d3dc359b371b1a21d783 title: Step 14 challengeType: 0 dashedName: step-14 --- # --description-- Time to position the cabins around the wheel. Select the first `.cabin` element. Set the `right` property to `-8.5%` and the `top` property to `50%`. # --hints-- You should have a `.cabin:nth-of-type(1)` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin:nth-of-type(1)')); ``` Your `.cabin:nth-of-type(1)` selector should have a `right` property set to `-8.5%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin:nth-of-type(1)')?.right === '-8.5%'); ``` Your `.cabin:nth-of-type(1)` selector should have a `top` property set to `50%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin:nth-of-type(1)')?.top === '50%'); ``` # --seed-- ## --seed-contents-- ```html