--- id: 612e9a21381a1949327512e6 title: Step 15 challengeType: 0 dashedName: step-15 --- # --description-- Move the keys into position by adjusting the `#piano` selector. Set the `padding` property to `90px 20px 0 20px`. # --hints-- Your `#piano` selector should have the `padding` property set to `90px 20px 0 20px`. ```js assert(new __helpers.CSSHelp(document).getStyle('#piano')?.padding === '90px 20px 0px'); ``` # --seed-- ## --seed-contents-- ```html Piano
``` ```css html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } --fcc-editable-region-- #piano { background-color: #00471b; width: 992px; height: 290px; margin: 80px auto; } --fcc-editable-region-- .keys { background-color: #040404; width: 949px; height: 180px; padding-left: 2px; } ```