--- 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 Piano
``` ```css html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } #piano { background-color: #00471b; width: 992px; height: 290px; margin: 80px auto; padding: 90px 20px 0 20px; } .keys { background-color: #040404; width: 949px; height: 180px; padding-left: 2px; } .key { background-color: #ffffff; position: relative; width: 41px; height: 175px; margin: 2px; float: left; } .key.black--key::after { background-color: #1d1e22; content: ""; position: absolute; left: -18px; width: 32px; height: 100px; } --fcc-editable-region-- --fcc-editable-region-- ```