Learn basic css by building a cafe menu step 53

it says that i shouldn’t have a space between p elements but i don’t see the space, can anyone else see it or is it just bugging out?

my code so far(the important lines are where it says the class is dessert):

<meta charset="utf-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Cafe Menu</title>

<link href="styles.css" rel="stylesheet" type="text/css" />
<div class="menu">

  <header>

    <h1>CAMPER CAFE</h1>

    <p>Est. 2020</p>

  </header>

  <main>

    <section>

      <h2>Coffee</h2>

      <article class="item">

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

      </article>

      <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>

    </section>

    <section>

      <h2>Desserts</h2>

      <article class="item">

        <p class="dessert">donut</p><p class="price">1.50</p>

        <p class="dessert">Cherry Pie</p><p class="price">2.75</p>

        <p class="dessert">Cheesecake</p><p class="price">3.00</p>

        <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>

      </article>

    </section>

  </main>

</div>

I think you overlooked this part of the instructions:

“Below the dessert you just added, add the rest of the desserts and prices using three more article elements…”

thanks lol, you really have to look at every part of it and i never learn

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