---
id: 5f4701b942c824109626c3d8
title: Step 77
challengeType: 0
dashedName: step-77
---
# --description--
Now add the `bottom-line` class to the second `hr` element so the styling is applied.
# --hints--
You should apply the `class="bottom-line"` property.
```js
assert(code.match(/class=('|")bottom-line\1/i));
```
Your `bottom-line` class should be applied to your second `hr` element.
```js
assert($('hr')[1].className === 'bottom-line');
```
# --seed--
## --seed-contents--
```html