--- id: 615f829d07b18f96f6f6684b title: Step 57 challengeType: 0 dashedName: step-57 --- # --description-- The advantage to creating these dividers is that you can apply specific classes to style them individually. Add `dbl-indent` to the `class` for your last `.divider`. # --hints-- Your last `.divider` element should have `dbl-indent` added to the `class`. Do not remove the existing value. ```js const last = document.querySelector('.daily-value.sm-text')?.lastElementChild; assert(last?.classList?.contains('dbl-indent')); assert(last?.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%
Trans Fat 0g
Cholesterol 0mg 0%
Sodium 160mg 7%
Total Carbohydrate 37g 13%
Dietary Fiber 4g
Total Sugars 12g
--fcc-editable-region--