--- id: 5f356ed63c7807a4f1e6d054 title: Part 22 challengeType: 0 dashedName: part-22 --- # --description-- The goal now is to make the `div` not take up the entire width of the page. The CSS `width` property is perfect for this. Create a new type selector in the style sheet that gives your `div` element a width of `300px`. # --hints-- Test 1 ```js ``` # --seed-- ## --seed-contents-- ```html Camper Cafe Menu

CAMPER CAFE

Est. 2020

Coffees

``` ```css --fcc-editable-region-- body { background-color: burlywood; } h1, h2, p { text-align: center; } --fcc-editable-region-- ```