---
id: 60b69a66b6ddb80858c515a6
title: Step 49
challengeType: 0
dashedName: step-49
---
# --description--
FontAwesome icons come with their own styling to define the icon. However, you can still set the styling yourself as well, to change things like the color and size. For now, use a `class` selector to target your `fa-music` icons. Set the `display` to `inline-block`, the `margin-top` to `8%`, and the `margin-left` to `13%`.
# --hints--
You should have a `.fa-music` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('.fa-music'));
```
Your `.fa-music` selector should have a `display` property set to `inline-block`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.fa-music')?.display === 'inline-block');
```
Your `.fa-music` selector should have a `margin-top` property set to `8%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.fa-music')?.marginTop === '8%');
```
Your `.fa-music` selector should have a `margin-left` property set to `13%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.fa-music')?.marginLeft === '13%');
```
# --seed--
## --seed-contents--
```html