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!
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

Johan Hernández
4,141 PointsProblem with tbody.
Hi I am in the challenge of HTML tables (7th step):
Add cells with text to your table body. - I do it (see code below), but it continues showing this message: Bummer! Try adding a table cell with text in it to your table body's row.
Can someone point me in the right direction? I think it is the challenge that is wrong or is it me. :D
<table border="1">
<tr>
<thead>Header
<tr>
<th>Header2</th>
<th>Header3</th>
</tr>
</thead>
<th>Savings</th>
</tr>
<tbody>
<tr><td> some text </td></tr>
</tbody>
</table>
6 Answers

Johan Hernández
4,141 PointsIt worked already... :)

Vikram Mudaliar
8,479 PointsHi, i am facing the same issue, can you please help me with the same?

Guil Hernandez
Treehouse TeacherNice work, Johan!

Johan Hernández
4,141 PointsHello Vikram, sure I'll try to do it. Could you place your code here please?

Vikram Mudaliar
8,479 PointsHi Johan, I solved it, when I was adding the row inside <tbody> , I was getting this error, adding the same outside of it solved that code challenge. Thanks, for the quick response.

Johan Hernández
4,141 PointsGreat job!