--- id: 5f356ed63c7807a4f1e6d054 title: Step 21 challengeType: 0 dashedName: step-21 --- # --description-- Adesso, l'obiettivo è far sì che `div` non occupi l'intera larghezza della pagina. La proprietà CSS `width` è perfetta per questo. Crea un nuovo selettore di tipo nel foglio di stile che dà al tuo elemento `div` una larghezza di `300px`. # --hints-- Dovresti avere un selettore di tipo `div`. ```js const hasDiv = new __helpers.CSSHelp(document).getStyle('div'); assert(hasDiv); ``` Dovresti assegnare alla proprietà `width` il valore `300px`. ```js const hasWidth = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.width === '300px'); assert(hasWidth); ``` `div` dovrebbe avere una larghezza di 300px. ```js const divWidth = new __helpers.CSSHelp(document).getStyle('div')?.getPropertyValue('width'); assert(divWidth === '300px'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

CAMPER CAFE

Est. 2020

Coffee

``` ```css --fcc-editable-region-- body { background-color: burlywood; } h1, h2, p { text-align: center; } --fcc-editable-region-- ```