---
id: 6148defa9c01520fb9d178a0
title: Step 60
challengeType: 0
dashedName: step-60
---
# --description--
Remove the default styling for the list items of `.answers-list`, and remove the unordered list padding.
# --hints--
You should use the `.answers-list` selector.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle('.answers-list'));
```
You should give `.answers-list` a `list-style` of `none`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.answers-list')?.listStyle, 'none');
```
You should give `.answers-list` a `padding` of `0`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.answers-list')?.padding, '0px');
```
# --seed--
## --seed-contents--
```html