French Vanilla
3.00
--- id: 5f46e36e745ead58487aabf2 title: Step 87 challengeType: 0 dashedName: step-87 --- # --description-- Now the top spacing looks good. The space below the address at the bottom of the menu is a little bigger than the space at the top of the menu and the `h1` element. To decrease the default margin space below the address `p` element, create a class selector named `address` and use the value `5px` for the `margin-bottom` property. # --hints-- You should add an `.address` selector. ```js const hasAddress = new __helpers.CSSHelp(document).getStyle('.address'); assert(hasAddress); ``` You should set the `margin-bottom` property to `5px`. ```js const hasMarginBottom = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['margin-bottom'] === '5px'); assert(hasMarginBottom); ``` Your `.address` selector should have the `margin-bottom` property set to `5px`. ```js const addressMarginBottom = new __helpers.CSSHelp(document).getStyle('.address')?.getPropertyValue('margin-bottom'); assert(addressMarginBottom === '5px'); ``` # --seed-- ## --seed-contents-- ```html