French Vanilla
3.00
--- id: 5f3cade94c6576e7f7b7953f title: Step 42 challengeType: 0 dashedName: step-42 --- # --description-- Now go ahead and change both the `flavor` and `price` class' widths to be `50%` again. # --hints-- You should set the `width` property to `50%` in your `.flavor` selector. ```js const flavorWidth = new __helpers.CSSHelp(document).getStyle('.flavor')?.getPropertyValue('width'); assert(flavorWidth === '50%'); ``` You should set the `width` property to `50%` in your `.price` selector. ```js const priceWidth = new __helpers.CSSHelp(document).getStyle('.price')?.getPropertyValue('width'); assert(priceWidth === '50%'); ``` # --seed-- ## --seed-contents-- ```html