Learn Basic CSS by Building a Cafe Menu - Step 44

The Step Is-

To complete the styling, add the applicable class names flavor and price to all the remaining p elements.

You’re supposed to put class=“price” and class=“flavor” in the

to identify the class for each flavor.

The example im supposed to replicate was

   <article class="item">
            <p class="flavor">French Vanilla</p><p class="price">3.00</p>
          </article>

I did the same thing to the other 4 you’re supposed to do it to-

<article class="item">
            <p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>
          </article>
          <article class="item">
            <p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>
          </article>
          <article class="item">
            <p class="flavor">Hazelnut</p><p class"price">4.00</p>
          </article>
          <article class="item">
            <p class="flavor">Mocha</p><p class="price">4.50</p>
          </article>

So i put the classes in, but when i submit it, it says " You should have five .price elements."

I dont know what that means or how to fix it

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

The syntax highlighting here is showing a problem

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.