--- id: 5f356ed63e0fa262326eef05 title: Step 24 challengeType: 0 dashedName: step-24 --- # --description-- Now make the background color of the `div` element to be `burlywood`. # --hints-- You should set the `background-color` property to `burlywood`. ```js const hasBackgroundColor = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['background-color'] === 'burlywood'); assert(hasBackgroundColor); ``` Your `div` should have a burlywood background. ```js const divBackground = new __helpers.CSSHelp(document).getStyle('div')?.getPropertyValue('background-color'); assert(divBackground === 'burlywood'); ``` # --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: 300px; } --fcc-editable-region-- ```