---
id: 60b69a66b6ddb80858c5159c
title: Step 38
challengeType: 0
dashedName: step-38
---
# --description--
Use an `id` selector to create a rule for your `black-character` element. Set the `width` to `300px`, the `height` to `500px`, and the `background-color` to `rgb(45, 31, 19)`.
# --hints--
You should use a `#black-character` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character'));
```
Your `#black-character` selector should have a `width` property set to `300px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.width === '300px');
```
Your `#black-character` selector should have a `height` property set to `500px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.height === '500px');
```
Your `#black-character` selector should have a `background-color` property to `rgb(45, 31, 19)`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#black-character')?.backgroundColor === 'rgb(45, 31, 19)');
```
# --seed--
## --seed-contents--
```html