---
id: 614880dc16070e093e29bc56
title: Step 51
challengeType: 0
dashedName: step-51
---
# --description--
Replace the top margin of the `h2` elements with `60px` of top padding.
# --hints--
You should give the `h2` a `margin-top` of `0`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('h2')?.marginTop, '0px');
```
You should give the `h2` a `padding-top` of `60px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('h2')?.paddingTop, '60px');
```
# --seed--
## --seed-contents--
```html