French Vanilla
3.00
--- id: 5f45a66d4a2b0453301e5a26 title: Step 79 challengeType: 0 dashedName: step-79 --- # --description-- Moving down to the `footer` element, make all the text have a value of `14px` for the font size. # --hints-- You should have a `footer` selector. ```js const hasFooter = new __helpers.CSSHelp(document).getStyle('footer'); assert(hasFooter); ``` Your `footer` selector should be below your comment. ```js assert(code.match(/\/\*\s*FOOTER\s*\*\/\s*footer/i)); ``` You should set the `font-size` property to `14px`. ```js const hasFontSize = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['font-size'] === '14px'); assert(hasFontSize); ``` Your `footer` element should have a `font-size` of `14px`. ```js const footerFontSize = new __helpers.CSSHelp(document).getStyle('footer')?.getPropertyValue('font-size'); assert(footerFontSize === '14px'); ``` # --seed-- ## --seed-contents-- ```html