---
id: 6199409834ccaf0d10736596
title: Step 34
challengeType: 0
dashedName: step-34
---
# --description--
Target all descendent elements of the `.penguin` element, and give them a `position` of `absolute`.
# --hints--
You should use the `.penguin *` selector.
```js
assert.match(code, /\.penguin\s*\*\s*\{/);
```
You should give `.penguin *` a `position` of `absolute`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.penguin *')?.position, 'absolute');
```
# --seed--
## --seed-contents--
```html