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Иван Мандински
10,908 PointsI cannot figure out what the question ask me to do
Create another table row with a cell that spans two columns.
3 Answers
Chris Wise
1,501 Points<tr>
<td colspan="2">
</td>
</tr>
Thats one way to do it.
Adam Sackfield
Courses Plus Student 19,663 PointsSomething like this. So you need to create a new table row "tr" then inside here add the "td" with a "colspan" attribute equal to 2
<table>
<thead>
<tr>
<th>Sponge</th>
<th>Bob</th>
</tr>
</thead>
<tbody>
<tr>
<td>Square</td>
<td>Pants</td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</tbody>
</table>
Andrew McCormick
17,730 Pointscheck out the 2:10 mark of the video right before the challenge. It will show you what is meant and how to do it. headers and footers