---
id: 612eb7ca8c275d5f89c73333
title: Step 24
challengeType: 0
dashedName: step-24
---
# --description--
To smooth the sharp edges of the piano and keys, start by giving the `#piano` a `border-radius` of `10px`.
# --hints--
Your `#piano` selector should have a `border-radius` property set to `10px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#piano')?.borderRadius === '10px');
```
# --seed--
## --seed-contents--
```html