--- id: 612e95ef2e4bdf41f69067f9 title: Step 12 challengeType: 0 dashedName: step-12 --- # --description-- Imposta la proprietà `margin` dell'elemento `#piano` su `80px auto`. # --hints-- Il selettore `#piano` dovrebbe avere una proprietà `margin` impostata su `80px auto`. ```js assert(new __helpers.CSSHelp(document).getStyle('#piano')?.margin === '80px auto'); ``` # --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; } --fcc-editable-region-- ```