Rowspan and colspan
Usage of rowspan and colspan:
A table is a powerful tool for organizing data. A table has two attributes: rowspan and colspan. These two attributes can be used to merge cells, the following describes the functions of these two attributes through code instances.
I. colspan attributes:
This attribute can be used to merge cells across columns horizontally.
For ease of understanding, you can start with attribute words. colspan is a composite word: column + span ).
The attribute value is a number, indicating that cells are merged across several columns.
The code example is as follows:
<! DOCTYPE html>
The code above can merge cells across two columns, so the two cells in the first row are merged into one cell.
Ii. rowspan attributes:
This attribute can merge cells across rows.
Similarly, rowspan is a synthesis word: row (row) + span (span ).
The attribute value is a number, indicating that cells are merged across several columns.
The code example is as follows:
<! DOCTYPE html>
The above code can merge cells across two rows, so the first cell in the first row and the first cell in the second row can be merged.
Original address: http://www.51texiao.cn/HTML5jiaocheng/2015/0612/4021.html
The most original address is: http://www.softwhy.com/