--- 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 AcmeWidgetCorp Balance Sheet

Assets

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

Liabilities

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

Net Worth

Total $-171 $136 $334

``` ```css body { text-align: center; font-family: Tahoma; color: #0a0a23; } #sheet { text-align: left; max-width: 500px; margin: auto; padding: 10px; border: 2px solid #d0d0d5; } #header h2 { font-size: 1.3em; } .row { display: flex; justify-content: flex-end; } --fcc-editable-region-- --fcc-editable-region-- .name { width: 100%; text-align: left; } ```