French Vanilla
3.00
--- id: 5f3ef6e06d34faac0447fc44 title: Step 61 challengeType: 0 dashedName: step-61 --- # --description-- Make the `Est. 2020` text italicized by creating an `established` class selector and giving it the `font-style` property with the value `italic`. # --hints-- You should have an `.established` selector. ```js const hasEstablished = new __helpers.CSSHelp(document).getStyle('.established'); assert(hasEstablished); ``` You should set the `font-style` property to `italic`. ```js const hasFontStyle = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['font-style'] === 'italic'); assert(hasFontStyle); ``` Your `.established` selector should set the `font-style` property to `italic`. ```js const establishedFontStyle = new __helpers.CSSHelp(document).getStyle('.established')?.getPropertyValue('font-style'); assert(establishedFontStyle === 'italic'); ``` # --seed-- ## --seed-contents-- ```html