---
id: 6140dd77e0bc5a1f70bd7466
title: Step 18
challengeType: 0
dashedName: step-18
---
# --description--
Give the `0%` rule a `transform` property set to `rotate(0deg)`. This will start the animation with no rotation.
# --hints--
Your `0%` selector should have a `transform` property set to `rotate(0deg)`.
```js
assert(new __helpers.CSSHelp(document).getCSSRules('keyframes')?.[0]?.cssRules?.[0]?.style?.transform === 'rotate(0deg)');
```
# --seed--
## --seed-contents--
```html