--- id: 5f3ef6e0086dc80481f8cb03 title: Part 54 challengeType: 0 --- ## Description
Something does not look right. You added the correct `class` attribute to the `p` elements with dessert names, but you have not defined a selector for it. Since the `flavor` class selector already has the properties you want, just add the `dessert` class to it.
## 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: 75%; } --fcc-editable-region-- .price { text-align: right; width: 25% } ```