---
id: 615f6a7d4ba8037bc086c2c7
title: Step 41
challengeType: 0
dashedName: step-41
---
# --description--
Give the `.divider` selector a `clear` property set to `right`. This will clear the `float` property, pushing the divider and any following content down below the `float` text.
# --hints--
Your `.divider` selector should have a `clear` property set to `right`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.divider')?.clear === 'right');
```
# --seed--
## --seed-contents--
```html