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

Radu Ioan Stochita
3,558 PointsBorder between TD and TH
Hello everyone!
I was trying to create a table by myself, but I have a problem styling it. I can't remove that space between <td>s and <th>s. Can you help me, please?
1 Answer

Erwin Meesters
15,088 PointsIf you mean how to get rid of the standard border of the table cells, you can put this css rule on the tabel:
table {
border-collapse: collapse;
}
after that you can style the rows and or cell separately with borders

Radu Ioan Stochita
3,558 PointsThank you, Erwin. I didn't know about this CSS rule.
Perry Eising
12,663 PointsPerry Eising
12,663 PointsI'm looking at this but I don't understand what your question is. can you be a bit more specific?