---
id: 6148dcaaf2e8750e6cb4501a
title: Step 58
challengeType: 0
dashedName: step-58
---
# --description--
Make the paragraph elements appear as a higher priority, with the following CSS properties:
```css
margin-top: 5px;
padding-left: 15px;
font-size: 20px;
```
# --hints--
You should use the `p` element selector.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle('p'));
```
You should give the `p` element a `margin-top` of `5px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.marginTop, '5px');
```
You should give the `p` element a `padding-left` of `15px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.paddingLeft, '15px');
```
You should give the `p` element a `font-size` of `20px`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.fontSize, '20px');
```
# --seed--
## --seed-contents--
```html