--- id: 60f1a5e2d2c23707a4f9a660 title: Step 9 challengeType: 0 dashedName: step-9 --- # --description-- Ora, rimuovi la barra di scorrimento orizzontale, impostando a `0` la proprietà `margin` dell'elemento `body` che a volte viene aggiunta di default da alcuni browser. # --hints-- Dovresti aggiungere la proprietà `margin` all'interno del selettore `body`. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('body')?.margin); ``` Dovresti assegnare allla proprietà `margin` il valore `0`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('body')?.margin, '0px'); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

``` ```css --fcc-editable-region-- body { width: 100%; height: 100vh; } --fcc-editable-region-- ```