---
id: 6201a20d742f5c89736c8cfb
title: Step 61
challengeType: 0
dashedName: step-61
---
# --description--
Select the `th` elements within your `tr.data` elements. Align the text to the left, and give them a top padding of `0.3rem` and a left padding of `0.5rem`.
# --hints--
You should have a `tr.data th` selector.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th'));
```
Your `tr.data th` selector should have a `text-align` property set to `left`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th')?.getPropertyValue('text-align') === 'left');
```
Your `tr.data th` selector should have a `padding-top` property set to `0.3rem`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th')?.getPropertyValue('padding-top') === '0.3rem');
```
Your `tr.data th` selector should have a `padding-left` property set to `0.5rem`.
```js
assert(new __helpers.CSSHelp(document).getStyle('tr.data th')?.getPropertyValue('padding-left') === '0.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.