Step 32
The flavors and prices are currently stacked on top of each other and centered with their respective p
elements. It would be nice if the flavor was on the left and the price was on the right.
Add the class name flavor
to the French Vanilla
p
element.
My answer -
<p French Vanilla
.flavor{}
</p>
<p>3.00</p>
Hint
You should add the flavor
class to your p
element.
I don’t understand what I’m getting wrong.