--- id: 5f356ed69db0a491745e2bb6 title: Step 28 challengeType: 0 dashedName: step-28 --- # --description-- To apply the class's styling to the `div` element, add a `class` attribute to the `div` element's opening tag and set its value to `menu`. # --hints-- Your `div` should still render. Make sure you haven't malformed the `
` tag. ```js assert($('div').length === 1); ``` Your `div` element should have the `menu` class. ```js assert($('div').attr('class').includes('menu')); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu --fcc-editable-region--
--fcc-editable-region--

CAMPER CAFE

Est. 2020

Coffee

``` ```css body { /* background-color: burlywood; */ } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; } ```