Hello,
I have tried solving step 52 in Learn basic CSS but i cant find any solution. I think everything is correct?
the question is:
" Step 52
Below the dessert you just added, add the rest of the desserts and prices using three more article
elements, each with two nested p
elements. Each element should have the correct dessert and price text, and all of them should have the correct classes.
Cherry Pie 2.75
Cheesecake 3.00
Cinnamon Roll 2.50
```"
and my solution is:
"<article class="item">
<p class="dessert">Donut</p><p class="price">1.50</p>
</article>
<article class="item">
<p class="dessert">Cherry Pie</p><p class="price">2.75</p>
</article>
<article class="item">
<p class="dessert">Cheescake</p><p class="price">3.00</p>
</article>
<article class="item">
<p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
</article>"
This is the answer im getting:
"Sorry, your code does not pass. Don't give up.
Your .dessert elements should have the text Donut, Cherry Pie, Cheesecake, and Cinnamon Roll."
what am i missing?
Thanks