--- id: 612ead8788d28655ef8db056 title: Step 20 challengeType: 0 dashedName: step-20 --- # --description-- For the `.key.black--key::after`, set the `width` to `32px` and the `height` to `100px`. # --hints-- Your `.key.black--key::after` should have a `width` property set to `32px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.key.black--key::after')?.width === '32px'); ``` Your `.key.black--key::after` should have a `height` property set to `100px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.key.black--key::after')?.height === '100px'); ``` # --seed-- ## --seed-contents-- ```html