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

Tell us what’s happening:
Describe your issue in detail here.
What’s wrong with my codes?
Anyone to help please

Your code so far

Balance Sheet

AcmeWidgetCorp Balance Sheet

2019 2020 2021
Assets
2019 2020 2021
```html Balance Sheet

AcmeWidgetCorp Balance Sheet

2019 2020 2021
Assets
        <thead>
          <tr>
            <td>
            </td>
            <th><span class="sr-only year">2019</span></th>
            <th><span class="sr-only year">2020</span></th>
            <th class="current"><span class="sr-only year">2021</span></th>
          </tr>
        </thead>
        <tbody>
        </tbody>
      </table>
      <table>
      </table>
      <table>
      </table>
    </div>
  </section>
</main>
```
/* file: styles.css */

Your browser information:

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

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

Link to the challenge:

The <td></td> element seems to be causing a problem.
Try putting it all on one line with no spaces

1 Like

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