---
id: 6145ed1f22caab087630aaad
title: Step 33
challengeType: 0
dashedName: step-33
---
# --description--
To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `Question #`.
# --hints--
You should use the `p::before` selector.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle('p::before'));
```
You should give the `p::before` pseudo-element a `content` property of `Question #`.
```js
assert.include(new __helpers.CSSHelp(document).getStyle('p::before')?.content, 'Question #');
```
# --seed--
## --seed-contents--
```html