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 trialdtap
3,496 PointsChallenge 8: Create another table cell that spans two columns
I have done this. it's actually quite easy. However, it does not specify if it's supposed to be inside the <tbody> tag, before, after, or in or outside any other tag. Therefore I cannot pass the challenge. Does anyway have the answer? Thanks!
2 Answers
Christian Frick
14,586 PointsTry this:
<table>
<tr><td>Lorem ipsum</td></tr>
<tr><td colspan="2">Lorem ipsum</td></tr>
</table>
Peter Ramsing
16,814 PointsWhat task are you on?
dtap
3,496 PointsIt was the last challenge on tables in html
dtap
3,496 Pointsdtap
3,496 PointsThat code worked. I was doing the exact same thing but it wasn't passing. I just had different text, then tried with no text.
Anyhow, Thanks so much Christian!