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 trialtate lantis
1,344 PointsCreate another table row with a cell that spans two columns.
i need help i cant figure out
5 Answers
sanjana porwal
4,080 Pointssample code: <table> <th colspan="2"> <tr> <td> A </td> <td> B </td> </tr> </th> </table>
tate lantis
1,344 Pointsi don't understand
tate lantis
1,344 Pointsdon't
Antoni Zalewski
5,211 PointsYou may try to apply code in this order:
<tr>
<td colspan="2"></td>
</tr>
hope it works for you.
tate lantis
1,344 Pointsthank you it worked