---
id: 5d822fd413a79914d39e98f3
title: Step 43
challengeType: 0
dashedName: step-43
---
# --description--
You don't need the `height` or `background-color` properties in `.bb1a`, `.bb1b` or `.bb1c` anymore, so go ahead and remove them.
# --hints--
You should remove the `background-color` from `.bb1a`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle('.bb1a')?.backgroundColor);
```
You should remove the `height` property from `.bb1b`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle('.bb1b')?.height);
```
You should remove the `background-color` property from `.bb1b`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle('.bb1b')?.backgroundColor);
```
You should remove the `height` property from `.bb1c`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle('.bb1c')?.height);
```
You should remove the `background-color` property from `.bb1c`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle('.bb1c')?.backgroundColor);
```
# --seed--
## --seed-contents--
```html