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

Johan Hernández
Johan Hernández
4,141 Points

Problem 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

Vikram Mudaliar
Vikram Mudaliar
8,593 Points

Hi, i am facing the same issue, can you please help me with the same?

Johan Hernández
Johan Hernández
4,141 Points

Hello Vikram, sure I'll try to do it. Could you place your code here please?

Vikram Mudaliar
Vikram Mudaliar
8,593 Points

Hi 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.