---
id: 6199442866286d0ff421a4fc
title: Step 38
challengeType: 0
dashedName: step-38
---
# --description--
To give the penguin body a crest, create a pseudo-element that is the first child of the `.penguin-body` element. Set the `content` property of the pseudo-element to an empty string.
# --hints--
You should use the `.penguin-body::before` selector.
```js
assert.match(code, /\.penguin-body::before\s*\{/);
```
You should give `.penguin-body::before` a `content` of `""`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin-body::before')?.content, '""');
```
# --seed--
## --seed-contents--
```html