--- id: 5f356ed60785e1f3e9850b6e title: Step 24 challengeType: 0 dashedName: step-24 --- # --description-- Ora è facile vedere che il testo è centrato all'interno dell'elemento `div`. Attualmente, la larghezza dell'elemento `div` è specificata in pixel (`px`). Cambia il valore della proprietà `width` in `80%`, per renderlo l'80% della larghezza del suo elemento genitore (`body`). # --hints-- Dovresti assegnare alla proprietà `width` il valore `80%`. ```js const hasWidth = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.width === '80%'); assert(hasWidth); ``` Dovresti assegnare alla proprietà `width` il valore `300px`. ```js const hasWidth = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.width === '300px'); assert(!hasWidth); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

CAMPER CAFE

Est. 2020

Coffee

``` ```css body { /* background-color: burlywood; */ } h1, h2, p { text-align: center; } --fcc-editable-region-- div { width: 300px; background-color: burlywood; } --fcc-editable-region-- ```