What am I missing here? I feel like I don’t understand what they’re asking me for.
Step 41
That worked, but there is still a little space on the right of the price.
You could keep trying various percentages for the widths. Instead, simply move the price p element to be on the same line and make sure there is no space between them.
-Tried changing it to <p class="flavor">French Vanilla 3.00</p>
-Tried <p class="flavor">French Vanilla <p class="price">3.00</p></p>
-Tried changing the CSS to have .flavor align right and .price align left instead of the other way around
Tried just putting <p>French Vanilla 3.00</p>
I guess I don’t understand what they want from me, bc I keep getting the hint: “Your p elements should not have any space between them.”
Which they don’t
So whyyyy
you still need two p elements one after the other, none of yours attempt are correct because you are changing the two elements to be nested, or to be only one
“simply move the price p element to be on the same line and make sure there is no space between them.”
Use your backspace key to do this.
P.S. I can see the possibility for confusion though, because the instructions don’t explicitly mention that they want the price to be on the same line as the flavor. But since the previous steps are specifically dealing with these two elements I think it is making the assumption that you will understand that step 41 is also about these two elements.