-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (60 loc) · 1.49 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Layout</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
td {
border: 2px solid white;
padding: 20px;
}
.red {
background-color: red;
width: 200px;
height: 200px;
}
.green {
background-color: green;
width: 100px;
height: 100px;
}
.blue {
background-color: blue;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<table>
<tr>
<td class="green" colspan="2" rowspan="1"></td>
<td class="red" colspan="2" rowspan="2"></td>
<td class="green" colspan="2"></td>
</tr>
<tr>
<td class="green" colspan="2"></td>
<td class="green" colspan="2"></td>
</tr>
<tr>
<td class="red" colspan="2" rowspan="4"></td>
<td class="green"></td>
<td class="blue" colspan="1"></td>
<td class="blue" rowspan="1"></td>
</tr>
<tr>
<td class="green"></td>
<td class="blue"></td>
<td class="blue"></td>
</tr>
<tr>
<td class="green" colspan="4"></td>
</tr>
</table>
</body>
</html>