---
id: 6148dd31d210990f0fb140f8
title: Step 59
challengeType: 0
dashedName: step-59
---
# --description--
It is useful to see the default border around the `fieldset` elements, during development. However, it might not be the style you want.
Remove the border and bottom padding on the `.question` elements.
# --hints--
You should use the `.question` selector.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle('.question'));
```
You should give the `.question` a `border` of `none`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.question')?.borderStyle, 'none');
```
You should give the `.question` a `padding-bottom` of `0`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.question')?.paddingBottom, '0px');
```
# --seed--
## --seed-contents--
```html