-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocks.htm
57 lines (51 loc) · 1.2 KB
/
blocks.htm
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>rowclospan</title>
<style>
.cs{border-collapse:collapse;
text-align: center;}</style>
</head>
<body>
<table border=1 class=cs style=" width: 50%; height:150px">
<tr >
<td class=cs colspan=4>1</td>
</tr>
<tr>
<td class=cs>2</td>
<td class=cs rowspan=2 colspan=2>3</td>
<td class=cs>4</td>
</tr>
<tr>
<td class=cs>5</td>
<td class=cs>6</td>
</tr>
<tr >
<td class=cs colspan=4>7</td>
</tr>
</table>
<br>
<table border=1 class=cs style=" width: 50%; height: 150px">
<tr >
<td class=cs>1</td>
<td class=cs colspan=4>2</td>
</tr>
<tr>
<td rowspan=3>3</td>
<td>4</td>
<td>5</td>
<td rowspan=2 colspan=2>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
</tr>
<tr>
<td colspan=2>9</td>
<td>10</td>
<td>11</td>
</tr>
</table>
</body>
</html>