--- id: 5f7691dafd882520797cd2f0 title: Part 44 challengeType: 0 dashedName: part-44 --- # --description-- Next, position the other `p` elements to be on the same line with no space between them. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu ``` ```css body { background-image: url(https://tinyurl.com/coffee-beans-fcc); } 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%; } ```