---
id: 5f356ed63c7807a4f1e6d054
title: Part 22
challengeType: 0
---
## 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`.
## Tests
```yml
tests:
- text: Test 1
testString: ''
```
## Challenge Seed
```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--
```