---
id: 5f356ed6199b0cdef1d2be8f
title: Part 27
challengeType: 0
---
## Description
So far you have been using type selectors to style elements. A class selector is defined by a name with a dot directly in front it, like this:
```css
.class-name {
styles
}
```
Change the existing `div` selector into a class selector by replacing `div` with a class named `menu`.
## Tests
```yml
tests:
- text: Test 1
testString: ''
```
## Challenge Seed
```html
Camper Cafe Menu
CAMPER CAFE
Est. 2020
Coffees
```
```css
body {
/*
background-color: burlywood;
*/
}
h1, h2, p {
text-align: center;
}
--fcc-editable-region--
div {
width: 80%;
background-color: burlywood;
margin-left: auto;
margin-right: auto;
}
--fcc-editable-region--
```