---
id: 5f46e270702a8456a664f0df
title: Step 86
challengeType: 0
dashedName: step-86
---
# --description--
Per rimuovere parte dello spazio verticale tra l'elemento `h1` e il testo `Est. 2020`, modifica il margine inferiore dell'elemento `h1` impostandolo a `15px`.
# --hints--
Dovresti impostare la proprietà `margin-bottom` su `15px`.
```js
const hasMarginBottom = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['margin-bottom'] === '15px');
assert(hasMarginBottom);
```
Il tuo elemento `h1` dovrebbe avere un `margin-bottom` di `15px`.
```js
const h1MarginBottom = new __helpers.CSSHelp(document).getStyle('h1')?.getPropertyValue('margin-bottom');
assert(h1MarginBottom === '15px');
```
# --seed--
## --seed-contents--
```html