--- 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 Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); font-family: sans-serif; } h1 { font-size: 40px; } h2 { font-size: 30px; } .established { font-style: italic; } h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; padding: 20px; max-width: 500px; } --fcc-editable-region-- --fcc-editable-region-- h1, h2 { font-family: Impact, serif; } .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```