Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Tables HTML Tables

Trying to have a table cell span 2 columns, but the cell only spans one column. What am I missing in my code?

<!DOCTYPE html> <html> <head> <title>HTML Tables Challenge</title> </head> <body> <h1>HTML Tables Challenge</h1>

<!-- Write your code below -->
<table>
  <thead>Table Heading
    <tr>Row
        <th>Direct</th>
        <th>Indirect</th>        
    </tr>
  </thead>
    <tbody>
    <tr>Row 2
      <td>One</td>
      <td>Two</td>
      <td>Three</td>
    </tr>
    <tr>
      <td col span="2"> The information in this cell needs to span 2 columns.</td>
      <td>One column span</td>
    </tr>  
  </tbody>
</table>

</body> </html>

2 Answers

<td col span="2">

<td colspan="2">

there no space between col and span

thanks guys!