--- id: 5f3cade94c6576e7f7b7953f title: Part 42 challengeType: 0 --- ## 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 CAMPER CAFE Est. 2020 Coffees French Vanilla3.00 Carmel Macchiato 3.75 Pumpkin Spice 3.50 Hazelnut 4.00 Mocha 4.50 ``` ```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-- ```
Est. 2020
French Vanilla
3.00
Carmel Macchiato
3.75
Pumpkin Spice
3.50
Hazelnut
4.00
Mocha
4.50