--- id: 5f3cade94c6576e7f7b7953f title: Part 40 challengeType: 0 isHidden: true --- ## Description
Now go ahead and change both the `flavor` and `price` class' widths to be `50%` again.
## Tests
```yml tests: - text: Test 1 testString: '' ```
## Challenge Seed
```html Camper Cafe Menu ```
```css body { background-image: url(https://tinyurl.com/coffee-beans-fcc); } 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-- ```