---
id: 60b69a66b6ddb80858c515b3
title: Step 62
challengeType: 0
dashedName: step-62
---
# --description--
Select your `orange-character` element with an `id` selector. Give it a `width` of `250px`, a `height` of `550px`, and a `background-color` of `rgb(240, 78, 42)`.
# --hints--
You should have an `#orange-character` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('#orange-character'));
```
Your `#orange-character` selector should have a `width` property set to `250px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#orange-character')?.width === '250px');
```
Your `#orange-character` selector should have a `height` property set to `550px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#orange-character')?.height === '550px');
```
Your `#orange-character` selector should have a `background-color` property set to `rgb(240, 78, 42)`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#orange-character')?.backgroundColor === 'rgb(240, 78, 42)');
```
# --seed--
## --seed-contents--
```html