rowSpan
rowSpan和colSpan示例记录
rowSpan和colSpan看起来简单,真要自己写,要调半天,记录一个经典例子,方便快速上手 <table border="1" cellspacing="0"> <tr> <tr> <th rowspan="2">学号</th> <th rowspan="2">姓名</th> <th rowsp ......
table rowspan 用法
<table border="1"> <tr> <th>AA1</th> <th>BB1</th> <th>CC1</th> <th>DD1</th> <th>EE1</th> </tr> <tr> <td rowspan="5">A1</td> <td rowspan="2">B1</td> <t ......