--- id: 5f769541be494f25449b292f title: Part 34 challengeType: 0 --- ## Description
Using your new `flavor` class as a selector, set the `text-align` property's value to `left`.
## 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; } --fcc-editable-region-- --fcc-editable-region-- ```