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

Tell us what’s happening: Hint

Your first td element should have the text $750.

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

<tr class="data">
                <th>Credit <span class="description">The outstanding balance on our credit card.</span></th>
                <td>$750</td>
                <td>$600</td>
                <td class="current">$475</td>
              </tr>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

Read carefully the instruction: "In your fourth tr element, add a th element with the text **Total Liabilities** . Wrap the text Liabilities in a span element with the class attribute set to **sr-only**

<tr class="total"> ----------------this is already given to you!
                <th>TheFirstWord <span class="sr-only">TheSecondWord</span></th>
                .
                .
                .

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.