How can you set a column or a row spanning over more than one rows or columns?
Answers
Answered by
1
Explanation:
Use rowspan if you want to extend cells down and colspan to extend across. You can use rowspan="n" on a td element to make it span n rows, and colspan="m" on a td element to make it span m columns.
Similar questions