--- id: 5f7b87422a560036fd03ccff title: Step 51 challengeType: 0 dashedName: step-51 --- # --description-- For the two `p` elements you just added, add `dessert` as the value of the first `p` element's `class` attribute and the value `price` as the second `p` elements `class` attribute. # --hints-- You should have one `p` element with the `dessert` class. ```js assert($('.dessert').length === 1); ``` Your `p` element with the text `Donut` should have the `dessert` class. ```js assert($('.dessert')[0].innerText.match(/donut/i)); ``` Your `p` element with the text `1.50` should have the `price` class. ```js assert($('.price').last().text().match(/1\.50/)); ``` You should not have any spaces between your `p` elements. ```js assert(!code.match(/<\/p>\s+

Cafe Menu

``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } .item p { display: inline-block; } .flavor { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```