--- id: 6193fb8bef24145b57fbed00 title: Step 34 challengeType: 0 dashedName: step-34 --- # --description-- Now you'll need to adjust the layout of the dollar values. The CSS `:not()` selector allows you to target all elements matching a given selector *except* those which match the selector you provide within the `:not()`. Create a `span:not(.name)` selector to target all of your `span` elements except those with the `class` set to `name`. Give it a `margin-left` property set to `10px` and a `min-width` property set to `15%`. # --hints-- You should have a new `span:not(.name)` selector. ```js assert(new __helpers.CSSHelp(document).getStyle('span:not(.name)')); ``` Your `span:not(.name)` selector should have a `margin-left` property set to `10px`. ```js assert(new __helpers.CSSHelp(document).getStyle('span:not(.name)')?.marginLeft === '10px'); ``` Your `span:not(.name)` selector should have a `min-width` property set to `15%`. ```js assert(new __helpers.CSSHelp(document).getStyle('span:not(.name)')?.minWidth === '15%'); ``` # --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