+ 6
Confusion between table border and colspan.
can anyone tell me, why table border and colspan both same size/ number ???
3 Antworten
+ 13
border="2px"
means draw border to table 1pixel thick
colspan="2"
means merge 2 cell.
+ 6
table border is used for,well, table border :D.
Colspan is used to merge cells.
+ 6
Now I got it
rowspan="n" for merging n number of rows. and
colspan="n" for merging n number of columns