Build a Final Exams Table - Step 10

Tell us what’s happening:

As far as I can tell I’ve matched to the example for my colspan attribute. And google tells me the syntax is ok but the preview doesn’t show the span occurring. Please help.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Calculus Final Exams Table</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <table>
      <caption>
        Calculus Final Exam Grades
      </caption>

      <thead>     
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>

      <tbody>
        <tr>
          <td>Davis</td>
          <td>Alex</td>
          <td>54</td>
        </tr>

        <tr>
          <td>Doe</td>
          <td>Samantha</td>
          <td>92</td>
        </tr>

        <tr>
          <td>Rodriguez</td>
          <td>Marcus</td>
          <td>88</td>
        </tr>

        <tr>
          <td>Thompson</td>
          <td>Jane</td>
          <td>77</td>
        </tr>

        <tr>
          <td>Williams</td>
          <td>Natalie</td>
          <td>83</td>
        </tr>
      </tbody>

      <tfoot>
        <tr>

<!-- User Editable Region -->

         <td>Average Grade</td>
          <td colspan="2">78.8</td>

<!-- User Editable Region -->

        </tr>
      </tfoot>
    </table>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Final Exams Table - Step 10
https://www.freecodecamp.org/learn/responsive-web-design-v9/workshop-final-exams-table/step-10

In case this is in draft status I’m adding this line to hopefully assure it becomes a post.

You can see it’s doing what’s expected by temporarily add this inside your td:

style="border:1px solid red;"

are you sure you are adding colspan to the right td?

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