---
id: 6201a42e39bf3b95b6a33bf3
title: Step 62
challengeType: 0
dashedName: step-62
---
# --description--
Create a `tr.data th .description` selector to target the elements with the `class` set to `description` that are within your `th` elements in your `.data` table rows. Give them a block display, make the text italic with a normal weight, and position them with a `padding` set to `1rem 0 0.75rem` and a right margin of `-13.5rem`.
# --hints--
You should have a `tr.data th .description` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description'));
```
Your `tr.data th .description` selector should have a `display` property set to `block`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description')?.getPropertyValue('display') === 'block');
```
Your `tr.data th .description` selector should have a `font-style` property set to `italic`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description')?.getPropertyValue('font-style') === 'italic');
```
Your `tr.data th .description` selector should have a `font-weight` property set to `normal`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description')?.getPropertyValue('font-weight') === 'normal');
```
Your `tr.data th .description` selector should have a `padding` property set to `1rem 0 0.75rem`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description')?.getPropertyValue('padding') === '1rem 0px 0.75rem');
```
Your `tr.data th .description` selector should have a `margin-right` property set to `-13.5rem`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th .description')?.getPropertyValue('margin-right') === '-13.5rem');
```
# --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.