--- id: 5f7691dafd882520797cd2f0 title: Step 44 challengeType: 0 dashedName: step-44 --- # --description-- Next, position the other `p` elements to be on the same line with no space between them. # --hints-- 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: 50%; } .price { text-align: right; width: 50%; } ```