--- id: 5f356ed6199b0cdef1d2be8f title: Step 27 challengeType: 0 dashedName: step-27 --- # --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`. # --hints-- You should have a `.menu` type selector. ```js const hasMenu = new __helpers.CSSHelp(document).getStyle('.menu'); assert(hasMenu); ``` You should not have a `div` selector. ```js const hasDiv = new __helpers.CSSHelp(document).getStyle('div'); assert(!hasDiv); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu

CAMPER CAFE

Est. 2020

Coffee

``` ```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-- ```