Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 23

Tell us what’s happening:
Dont knowh at I’m doing wrong
Your code so far

           <tr class="data">
            <th>Loans <span class="description">The outstanding balance on our startup loan.</span></th>
            <td>$500</td>
            <td>$250</td>
            <td class="current">$0</td>
          </tr>
          <tr class="data">
            <th>Expenses <span class="description">Annual anticipated expenses, such as payroll.</span></th>
            <td>$200</td>
            <td>$300</td>
            <td class="current">$400</td>
          </tr>
          <th>Credit <span class="description">The outstanding balance on our credit card</span></th>
          <td>$50</td>
          <td>$50</td>
          <td class="current">$75</td>
          <tr class="data">
          </tr>
          <tr class="total">
          </tr>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

Challenge: Learn More About CSS Pseudo Selectors By Building A Balance Sheet - Step 23

Link to the challenge:

This code should be inside the <tr class="data"> tag

Ok I got this;

              <tr class="data">
                <th>Loans <span class="description">The outstanding balance on our startup loan.</span></th>
                <td>$500</td>
                <td>$250</td>
                <td class="current">$0</td>
              </tr>
              <tr class="data">
                <th>Expenses <span class="description">Annual anticipated expenses, such as payroll.</span></th>
                <td>$200</td>
                <td>$300</td>
                <td class="current">$400</td>
              </tr>
              <tr class="data">
                <th>Credit <span class="description">The Outstanding balance on our credit card.</span></th>
                <td>$50</td>
                <td>$50</td>
                <td class="current">$75</td>
              </tr>
              <tr class="total">
              </tr>

```


Your `th` element should have the text `Credit The outstanding balance on our credit card.`.

However its still not correct what am I not seeing ?

You use capital O for outstanding.

1 Like