French Vanilla
3.00
--- id: 5f45b45d099f3e621fbbb256 title: Step 83 challengeType: 0 dashedName: step-83 --- # --description-- You change properties of a link when the link is actually being clicked by using a pseudo-selector that looks like `a:active { propertyName: propertyValue; }`. Change the color of the footer `Visit our website` link to be `white` when clicked on. # --hints-- You should use the `a:active` pseudo-selector. ```js const hasAActive = new __helpers.CSSHelp(document).getStyle('a:active'); assert(hasAActive); ``` You should set the `color` property to `white`. ```js const hasColor = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.color === 'white'); assert(hasColor); ``` Your `a:active` should have a `color` of `white`. ```js const aActiveColor = new __helpers.CSSHelp(document).getStyle('a:active')?.getPropertyValue('color'); assert(aActiveColor === 'white'); ``` # --seed-- ## --seed-contents-- ```html