--- id: 6194135942d5e08174b8bab1 title: Step 51 challengeType: 0 dashedName: step-51 --- # --description-- Finally, the `elem1 + elem2` selector will target each `elem2` element that comes immediately after an `elem1` element. The notes in the balance sheet stand out too much - create a `p + span` selector to target them, and set the `font-size` property to `0.8em`. # --hints-- You should have a new `p + span` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('p + span')); ``` Your `p + span` selector should have a `font-size` property set to `0.8em`. ```js assert(new __helpers.CSSHelp(document).getStyle('p + span')?.fontSize === '0.8em'); ``` # --seed-- ## --seed-contents-- ```html
2019 2020 2021
Cash $25 $30 $28
This is the cash we currently have on hand.Checking $54 $56 $53
Our primary transactional account.Savings $500 $650 $728
Funds set aside for emergencies.Total $579 $736 $809
Loans $500 $250 $0
The outstanding balance on our startup loan.Expenses $200 $300 $400
Annual anticipated expenses, such as payroll.Credit $50 $50 $75
The running balance on our line of credit.Total $750 $600 $475
Total $-171 $136 $334