--- id: 5f3cade94c6576e7f7b7953f title: Step 41 challengeType: 0 dashedName: step-41 --- # --description-- Adesso prosegui e cambia le larghezze di entrambe le classi `flavor` e `price` in modo che abbiano di nuovo il valore `50%`. # --hints-- Dovresti assegnare alla proprietà `width` il valore `50%` nel selettore `.flavor`. ```js const flavorWidth = new __helpers.CSSHelp(document).getStyle('.flavor')?.getPropertyValue('width'); assert(flavorWidth === '50%'); ``` Dovresti assegnare alla proprietà `width` il valore `50%` nel selettore `.price`. ```js const priceWidth = new __helpers.CSSHelp(document).getStyle('.price')?.getPropertyValue('width'); assert(priceWidth === '50%'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } .item p { display: inline-block; } --fcc-editable-region-- .flavor { text-align: left; width: 49%; } .price { text-align: right; width: 49%; } --fcc-editable-region-- ```