-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGridTask.html
74 lines (70 loc) · 1.2 KB
/
GridTask.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 800px;
border-collapse: collapse;
margin: 20px auto;
}
td {
border: 1px solid black;
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<table>
<tr>
<td>1</td>
<td colspan="2">2</td>
<td rowspan="2">3</td>
<td colspan="2" rowspan="2">4</td>
</tr>
<tr>
<td colspan="3">5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
<td colspan="2">9</td>
<td>10</td>
</tr>
<tr>
<td colspan="2">11</td>
<td colspan="3">12</td>
<td rowspan="7">13</td>
</tr>
<tr>
<td rowspan="3">14</td>
<td>15</td>
<td>16</td>
<td>17</td>
<td colspan="1">18</td>
</tr>
<tr>
<td colspan="5">19</td>
</tr>
<tr>
<td colspan="2">20</td>
<td colspan="2">21</td>
</tr>
<tr>
<td colspan="5">22</td>
</tr>
<tr>
<td rowspan="2">23</td>
<td colspan="2">24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>27</td>
<td colspan="2">28</td>
<td>29</td>
</tr>
</table>
</body>
</html>