1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<!DOCTYPE html> <html> <head> <style> td { width: 20px; height: 20px; } table { border-collapse:separate; border-spacing: 0px; } </style> </head> <body> <table> <col style="background: green"></col> <col style="background: blue"></col> <tr> <td></td> <td rowspan=2></td> <tr> <td colspan=2></td> </tr> </table> </body> </html>