--- id: 612e9f1e7e5ccd4fa9ada0be title: Step 17 challengeType: 0 dashedName: step-17 --- # --description-- Give the `.key` a `margin` of `2px` and a `float` property set to `left`. # --hints-- Your `.key` selector should have a `margin` property set to `2px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.key')?.margin === '2px'); ``` Your `.key` selector should have a `float` property set to `left`. ```js assert(new __helpers.CSSHelp(document).getStyle('.key')?.float === 'left'); ``` # --seed-- ## --seed-contents-- ```html