---
id: 6201782cc420715562f36271
title: Step 43
challengeType: 0
dashedName: step-43
---
# --description--
Style the text within your `#years` element by creating a `#years span[class]` selector. The `span[class]` syntax will target any `span` element that has a `class` attribute set, regardless of the attribute's value.
Give your new selector a bold font, a width of `4.5rem`, and text aligned to the right.
# --hints--
You should have a `#years span[class]` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('#years span[class]'));
```
Your `#years span[class]` selector should have a `font-weight` property set to `bold`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#years span[class]')?.getPropertyValue('font-weight') === 'bold');
```
Your `#years span[class]` selector should have a `width` property set to `4.5rem`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#years span[class]')?.getPropertyValue('width') === '4.5rem');
```
Your `#years span[class]` selector should have a `text-align` property set to `right`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#years span[class]')?.getPropertyValue('text-align') === 'right');
```
# --seed--
## --seed-contents--
```html
Balance Sheet
AcmeWidgetCorpBalance Sheet
201920202021
Assets
2019
2020
2021
Cash This is the cash we currently have on hand.
$25
$30
$28
Checking Our primary transactional account.
$54
$56
$53
Savings Funds set aside for emergencies.
$500
$650
$728
Total Assets
$579
$736
$809
Liabilities
2019
2020
2021
Loans The outstanding balance on our startup loan.
$500
$250
$0
Expenses Annual anticipated expenses, such as payroll.
$200
$300
$400
Credit The outstanding balance on our credit card.