---
id: 60b69a66b6ddb80858c5159f
title: Step 42
challengeType: 0
dashedName: step-42
---
# --description--
Just like with your `white-hat`, you should style the border for the `black-hat` element. Give it a `border-top-color`, `border-right-color`, and `border-bottom-color` of `transparent`. Set the `border-left-color` to `rgb(45, 31, 19)`.
# --hints--
Your `#black-hat` selector should have a `border-top-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.borderTopColor === 'transparent');
```
Your `#black-hat` selector should have a `border-right-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.borderRightColor === 'transparent');
```
Your `#black-hat` selector should have a `border-bottom-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.borderBottomColor === 'transparent');
```
Your `#black-hat` selector should have a `border-left-color` property set to `rgb(45, 31, 19)`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-hat')?.borderLeftColor === 'rgb(45, 31, 19)');
```
# --seed--
## --seed-contents--
```html