Learn Basic CSS by Building a Cafe Menu - Step 44

These are the instructions:" To complete the styling, add the applicable class names flavor and price to all the remaining p elements"

This is my code. Anyone that might be able to help me?I’m abit stuck.

      <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="item">Hazelnut</p><p class="price">4.00</p>
      </article>
      <article class="item">
        <p class="item">Mocha</p><p class="price">4.50</p>
      </article>

Instead of class=“item” for ‘p’ elements should be put different values by the instruction. Please read it again.

Thanks. I made a stupid mistake. My brain definitely froze at one point lol.

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