--- id: 615380dff67172357fcf0425 title: Step 7 challengeType: 0 dashedName: step-7 --- # --description-- Normalizza il box model creando un selettore `*` e impostando la proprietà `box-sizing` su `border-box`. # --hints-- Dovresti avere un selettore `*`. ```js assert.exists(new __helpers.CSSHelp(document).getStyle('*')); ``` Il selettore `*` dovrebbe avere una proprietà `box-sizing` con il valore `border-box`. ```js assert(new __helpers.CSSHelp(document).getStyle('*')?.boxSizing === 'border-box'); ``` # --seed-- ## --seed-contents-- ```html Photo Gallery

css flexbox photo gallery

``` ```css --fcc-editable-region-- --fcc-editable-region-- ```