0
How do you add Borders in Tables?
I am trying to make a table in HTML/CSS and i can get everything done exept the borders of the individual cells. What do i have to enter, in order to have the program display the table with a grid-like border between each cell?
3 Answers
+ 2
table{ border-collapse: collapse; }
td{ border:1px solid black; }
EDITED: Corrected rule selector
+ 2
Thanks a lot.
0
You have to add css border rule to table cell (<td>). If you want to have single line add also border-collapse