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

Kindly help me fix these code
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.

Following that, add three td elements with the following text (in order): $750, $600, $475. Give the third td element a class attribute set to current.

    <tr class="total">
        <th>Total<span class="sr-only"> Liabilities</span></th>
        <td>$750</td>
        <td>$600</td>
        <td class="current">$475</td>
                
   </tr>
hint: Your th element should have the text Total Liabilities.

Wrap the “Liabilities” with ‘span’ tags but without a blank space in front of the word. Then, add a blank space after the word “Total”.

Thanks removed the space and passed

1 Like

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