French Vanilla
3.00
--- id: 5f3f26fa39591db45e5cd7a0 title: Step 68 challengeType: 0 dashedName: step-68 --- # --description-- The default properties of an `hr` element will make it appear as a thin light grey line. You can change the height of the line by specifying a value for the `height` property. Change the height the `hr` element to be `3px`. # --hints-- You should use the `hr` selector. ```js const hasHr = new __helpers.CSSHelp(document).getStyle('hr'); assert(hasHr); ``` You should set the `height` property to `3px`. ```js const hasHeight = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style.height === '3px'); assert(hasHeight); ``` Your `hr` element should have a height of `3px`. ```js const hrHeight = new __helpers.CSSHelp(document).getStyle('hr')?.getPropertyValue('height'); assert(hrHeight === '3px'); ``` # --seed-- ## --seed-contents-- ```html