--- id: 615f4f9e4a40566b776a8f38 title: Step 27 challengeType: 0 dashedName: step-27 --- # --description-- Create a new `.lg` selector and give it a `height` property set to `10px`. Also create an `.lg, .md` selector and set the `background-color` property to `black`. # --hints-- You should have a new `.lg` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.lg')); ``` Your `.lg` selector should have a `height` property set to `10px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.lg')?.height === '10px'); ``` You should have a new `.lg, .md` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.lg, .md')); ``` Your `.lg, .md` selector should have a `background-color` property set to `black`. ```js assert(new __helpers.CSSHelp(document).getStyle('.lg, .md')?.backgroundColor === 'black'); ``` # --seed-- ## --seed-contents-- ```html Nutrition Label

Nutrition Facts

8 servings per container

Serving size 2/3 cup (55g)

``` ```css * { box-sizing: border-box; } html { font-size: 16px; } body { font-family: 'Open Sans', sans-serif; } .label { border: 2px solid black; width: 270px; margin: 20px auto; padding: 0 7px; } header h1 { text-align: center; margin: -4px 0; letter-spacing: 0.15px } p { margin: 0; } .divider { border-bottom: 1px solid #888989; margin: 2px 0; } .bold { font-weight: 800; } .right { float: right; } --fcc-editable-region-- --fcc-editable-region-- ```