---
id: 60b69a66b6ddb80858c51594
title: Step 30
challengeType: 0
dashedName: step-30
---
# --description--
Move the dots into place by setting the `display` to `block`, the `margin` to `auto`, and the `margin-top` to `65%`.
# --hints--
Your `.black-dot` selector should have a `display` property set to `block`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.black-dot')?.display === 'block');
```
Your `.black-dot` selector should have a `margin` property set to `auto`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.black-dot')?.margin?.includes('auto'));
```
Your `.black-dot` selector should have a `margin-top` property set to `65%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.black-dot')?.marginTop === '65%');
```
# --seed--
## --seed-contents--
```html