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?
2 Antworten
+ 2
table{ border-collapse: collapse; }
td{ border:1px solid black; }
EDITED: Corrected rule selector
+ 2
Thanks a lot.