---
id: 6153a3485f0b20591d26d2a1
title: Step 19
challengeType: 0
dashedName: step-19
---
# --description--
Smooth out your images a bit by giving the `#gallery img` selector a `border-radius` property of `10px`.
# --hints--
Your `#gallery img` selector should have a `border-radius` property set to `10px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#gallery img')?.borderRadius === '10px');
```
# --seed--
## --seed-contents--
```html