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

Howdy,

I’m stuck on step 9 of the Balance Sheet portion. It seems pretty straight forward but it keeps telling me that I don’t have a thread element under the Assets comment when I do. I’ve googled this, there are 2 youtube video follow-alongs that show step 9 being COMPLETELY DIFFERENT than what I’m seeing, so I’m not sure what’s going on. Not even sure what to ask other than what I’m doing wrong?

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Balance Sheet</title>
  <link rel="stylesheet" href="./styles.css">
</head>
<body>
  <main>
    <section>
      <h1>
        <span class="flex">
          <span>AcmeWidgetCorp</span>
          <span>Balance Sheet</span>
        </span>
      </h1>
      <div id="years" aria-hidden="true">
        <span class="year">2019</span>
        <span class="year">2020</span>
        <span class="year">2021</span>
      </div>
      <div class="table-wrap">
        <table>
          <caption>Assets</caption>
          <thread>
          </thread>
          <tbody>
          </tbody>
        </table>
        <table>
        </table>
        <table>
        </table>
      </div>
    </section>
  </main>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

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

Link to the challenge:

There is no such thing as a thread element. Take a closer look at the instructions.

Gah, thank you, guess I was staying up a bit too late.

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