--- id: 6194079d7cbf586eba9539ff title: Step 42 challengeType: 0 dashedName: step-42 --- # --description-- Your last `.row` element in each section should stand out, as this is your "total" row. The `:last-child` selector allows you to target the matching element that is the final child in a group of siblings. Create a `.row:last-child` selector and give it a `background-color` property set to `transparent`. Also set the `margin-bottom` property to `30px` to create some extra space between your sections. # --hints-- You should have a new `.row:last-child` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('.row:last-child')); ``` Your `.row:last-child` selector should have a `background-color` property set to `transparent`. ```js assert(new __helpers.CSSHelp(document).getStyle('.row:last-child')?.backgroundColor === 'transparent'); ``` Your `.row:last-child` selector should have a `margin-bottom` property set to `30px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.row:last-child')?.marginBottom === '30px'); ``` # --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