--- id: 615f4ec58334106a4170c2a8 title: Passo 26 challengeType: 0 dashedName: step-26 --- # --description-- Crie um elemento `div` abaixo do elemento `header` e dê a ele um atributo `class` definido como `divider lg`. # --hints-- Você deve criar um novo elemento `div`. ```js assert(document.querySelectorAll('div')?.length === 3); ``` O novo elemento `div` deve estar depois do elemento `header`. ```js assert(document.querySelector('.label')?.lastElementChild?.localName === 'div'); ``` O novo elemento `div` deve ter o atributo `class` definido como `divider lg`. ```js const div = document.querySelector('.label')?.lastElementChild; assert(div?.classList?.contains('divider')); assert(div?.classList?.contains('lg')); ``` # --seed-- ## --seed-contents-- ```html Nutrition Label

Nutrition Facts

8 servings per container

Serving size 2/3 cup (55g)

--fcc-editable-region-- --fcc-editable-region--
``` ```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; } ```