---
id: 60b69a66b6ddb80858c515bd
title: Step 79
challengeType: 0
dashedName: step-79
---
# --description--
Now use a `class` selector to target `guitar`. This will style the two "halves" of your guitar. Set the `width` to `150px`, the `height` to `120px`, the `background-color` to `Goldenrod`, and the `border-radius` to `50%`.
# --hints--
You should create a `.guitar` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('.guitar'));
```
Your `.guitar` selector should have a `width` property set to `150px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.guitar')?.width === '150px');
```
Your `.guitar` selector should have a `height` property set to `120px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.guitar')?.height === '120px');
```
Your `.guitar` selector should have a `background-color` property set to `Goldenrod`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.guitar')?.backgroundColor === 'goldenrod');
```
Your `.guitar` selector should have a `border-radius` property set to `50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.guitar')?.borderRadius === '50%');
```
# --seed--
## --seed-contents--
```html