OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 @MAC-ALLOW:AXIndex=* | 3 @MAC-ALLOW:AXIndex=* |
4 @MAC-ALLOW:AXColumnIndexRange=* | 4 @MAC-ALLOW:AXColumnIndexRange=* |
5 @MAC-ALLOW:AXRowIndexRange=* | 5 @MAC-ALLOW:AXRowIndexRange=* |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <title>Table example with rowspan and colspan</title> | 9 <title>Table example with rowspan and colspan</title> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 | 12 |
13 <table border=1> | 13 <table border=1> |
14 <tr> | 14 <tr> |
15 <td rowspan="2">AD</td> | 15 <td rowspan="2">AD</td> |
16 <td colspan="2">BC</td> | 16 <td colspan="2">BC</td> |
17 </tr> | 17 </tr> |
18 <tr> | 18 <tr> |
19 <td colspan="2">EF</td> | 19 <td colspan="2">EF</td> |
20 </tr> | 20 </tr> |
21 </table> | 21 </table> |
22 | 22 |
23 </body> | 23 </body> |
24 </html> | 24 </html> |
OLD | NEW |