--- 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 const def = (s) => new __helpers.CSSHelp(document).getStyle(s) assert.exists(def('.cabin:first-of-type') || def('.cabin:nth-of-type(1)')); ``` Your `.cabin:nth-of-type(1)` selector should have a `right` property set to `-8.5%`. ```js const right = (s) => new __helpers.CSSHelp(document).getStyle(s)?.right assert.equal(right('.cabin:nth-of-type(1)') || right('.cabin:first-of-type'), '-8.5%'); ``` Your `.cabin:nth-of-type(1)` selector should have a `top` property set to `50%`. ```js const top = (s) => new __helpers.CSSHelp(document).getStyle(s)?.top assert.equal(top('.cabin:nth-of-type(1)') || top('.cabin:first-of-type'),'50%'); ``` # --seed-- ## --seed-contents-- ```html