--- id: 612e98f3245c98475e49cfc6 title: Крок 14 challengeType: 0 dashedName: step-14 --- # --description-- Надайте `.keys` властивість `padding-left` зі значенням `2px`. # --hints-- Ваш селектор `.keys` повинен мати властивість `padding-left` зі значенням `2px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.keys')?.paddingLeft === '2px'); ``` # --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; } --fcc-editable-region-- .keys { background-color: #040404; width: 949px; height: 180px; } --fcc-editable-region-- ```