---
id: 61539e07e7430b528fbffe21
title: Step 16
challengeType: 0
dashedName: step-16
---
# --description--
Give your `#gallery` selector a `padding` property set to `0 4px`.
# --hints--
Your `#gallery` selector should have a `padding` property set to `0 4px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#gallery')?.padding === '0px 4px');
```
# --seed--
## --seed-contents--
```html