--- id: 5f769702e6e33127d14aa120 title: Part 36 challengeType: 0 dashedName: part-36 --- # --description-- Now align the text to the `right` for the elements with the `price` class. # --hints-- You should have a `price` class selector. ```js assert(code.match(/\.price\s*{/i)); ``` Your `price` class selector should set the `text-align` property to `right`. ```js assert(code.match(/\.price\s*{\s*text-align:\s*right;?/i)); ``` Your `.price` element should be aligned to the right. ```js assert($('.price').css('text-align') === 'right'); ``` # --seed-- ## --seed-contents-- ```html Camper 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; } .flavor { text-align: left; } --fcc-editable-region-- --fcc-editable-region-- ```