--- id: 615f7bc680f7168ea01ebf99 title: Step 49 challengeType: 0 dashedName: step-49 --- # --description-- Now you will have to add separate dividers below your `.no-divider` elements. Your first `.no-divider` element has a `.divider` after it. Create another `.divider` after your second `.no-divider` element. # --hints-- You should create a new `div` at the end of your `.daily-value.sm-text` element. ```js assert(document.querySelector('.daily-value.sm-text')?.lastElementChild?.localName === 'div'); ``` Your new `div` should have the `class` attribute set to `divider`. ```js assert(document.querySelector('.daily-value.sm-text')?.lastElementChild?.classList?.contains('divider')); ``` # --seed-- ## --seed-contents-- ```html
8 servings per container
Serving size 2/3 cup (55g)
Amount per serving
% Daily Value *
Total Fat 8g10%
Saturated Fat 1g 5%
--fcc-editable-region--