--- id: 619403dacf51db6a79b47b52 title: Step 41 challengeType: 0 dashedName: step-41 --- # --description-- Now target your even `.row` elements using another `:nth-of-type()` selector, and give them a `background-color` property set to `#d0d0d5`. # --hints-- You should have a new `.row:nth-of-type(even)` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.row:nth-of-type(2n)')); ``` Your `.row:nth-of-type(even)` selector should have a `background-color` property set to `#d0d0d5`. ```js assert(new __helpers.CSSHelp(document).getStyle('.row:nth-of-type(2n)')?.backgroundColor === 'rgb(208, 208, 213)'); ``` # --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