---
id: 614100d7d335bb2a5ff74f1f
title: Step 23
challengeType: 0
dashedName: step-23
---
# --description--
With your `.wheel` selector, you created four different properties to control the animation. For your `.cabin` selector, you can use the `animation` property to set these all at once.
Set the `animation` property of the `.cabin` rule to `cabins 10s linear infinite`. This will set the `animation-name`, `animation-duration`, `animation-timing-function`, and `animation-iteration-count` properties in that order.
# --hints--
Your `.cabin` selector should have an `animation` property set to `cabins 10s linear infinite`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.cabin')?.animation === '10s linear 0s infinite normal none running cabins');
```
# --seed--
## --seed-contents--
```html