--- id: 612eb4893b63c75bb9251ddf title: Step 22 challengeType: 0 dashedName: step-22 --- # --description-- Start styling the logo by creating a `.logo` selector. Set the `width` to `200px`, a `position` of `absolute` and a `top` set to `23px`. # --hints-- You should have a `.logo` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.logo')); ``` Your `.logo` selector should have a `width` property set to `200px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.logo')?.width === '200px'); ``` Your `.logo` selector should have a `position` property set to `absolute`. ```js assert(new __helpers.CSSHelp(document).getStyle('.logo')?.position === 'absolute'); ``` Your `.logo` selector should have a `top` property set to `23px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.logo')?.top === '23px'); ``` # --seed-- ## --seed-contents-- ```html