help me out!!
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 Vanillap element.
type o <element class="value">French Vanilla</element>
<p>3.00</p>r paste code here
</article>
<article>
<p>Caramel Macchiato</p>
<p>3.75</p>
</article>
<article>
It looks to me that you need to add class="flavor" inside the p tag. If it’s the French Vanilla p element you want to add it to, then it will look like this:
<p class="flavor">3.00</p>
In regards to getting the flavor name on the left and the price on the right, you could try adding the price in the same p element as the flavor, but wrap the price in a span. You can then add a class that applies styles just to the price. Here’s an example of how that would look:
Take a little time to fiddle around with this stuff. And remember, have some patience, you may not understand something at the time of learning it, but you will as you keep moving forward. Keep going!!
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 Vanillap element.