--- id: 5f769702e6e33127d14aa120 title: Part 36 challengeType: 0 --- ## Description
Now align the text to the `right` for the elements with the `price` class.
## 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; } .flavor { text-align: left; } --fcc-editable-region-- --fcc-editable-region-- ```