French Vanilla
--fcc-editable-region--3.00
--fcc-editable-region----- id: 5f76967fad478126d6552b0d title: Step 35 challengeType: 0 dashedName: step-35 --- # --description-- Next, you want to align the price to the right. Add a class named `price` to your `p` element that has `3.00` as its text. # --hints-- You should add the `price` class to your `p` element. ```js assert(code.match(/
/i)); ``` You should only have one element with the `price` class. ```js assert($('.price').length === 1); ``` Your `price` class should be on the `p` element with the text `3.00`. ```js assert($('.price')[0].innerText.match(/3\.00/i)); ``` # --seed-- ## --seed-contents-- ```html