Learn Basic CSS by Building a Cafe Menu - Step 52

i used a , seperator for two classes e.g .a, .b i am getting an error saying .b class should contain its elements text. whats the mistake i am doing
Screenshot 2023-01-06 190256

Please provide a link to the challenge and cut and paste the relevant code into the message.

[https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-basic-css-by-building-a-cafe-menu/step-52]

 <article class="item">
            <p class="dessert">Donut</p><p class="price">1.50</p>
          </article>
           <article class="item">
            <p class="dessert">Cherry</p><p class="price">2.75</p>
          </article>
           <article class="item">
            <p class="dessert">Cheesecake</p><p class="price">3.00</p>
          </article>
           <article class="item">
            <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
          </article>
<p class="dessert">Cherry</p><p class="price">2.75</p>

Read the instructions and error message closely and then check this line very closely.

Tiny details matter.

Thanks for mentioning Tiny Details Part . Fixed the issue

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