--- id: 6140d263016325162fd076fe title: Step 11 challengeType: 0 dashedName: step-11 --- # --description-- Create a `.cabin` selector. Set the `background-color` to `red`, the `width` to `20%`, and the `height` to `20%`. # --hints-- You should have a `.cabin` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin')); ``` Your `.cabin` selector should have a `background-color` property set to `red`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.backgroundColor === 'red'); ``` Your `.cabin` selector should have a `width` property set to `20%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.width === '20%'); ``` Your `.cabin` selector should have a `height` property set to `20%`. ```js assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.height === '20%'); ``` # --seed-- ## --seed-contents-- ```html