---
id: 60b69a66b6ddb80858c51593
title: Part 29
challengeType: 0
dashedName: part-29
---
# --description--
These dots are just a little too square. Give the `black-dot` class a `border-radius` of `50%` to fix it.
# --hints--
Your `.black-dot` selector should have a `border-radius` property set to `50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.black-dot')?.borderRadius === '50%');
```
# --seed--
## --seed-contents--
```html