This repository was archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtables-colspan.html
More file actions
72 lines (65 loc) · 2.44 KB
/
tables-colspan.html
File metadata and controls
72 lines (65 loc) · 2.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>LUNCHTML 2.0 - Review: MVP Tags</title>
<link rel="stylesheet" type="text/css" href="style-review.css" />
<link href='http://fonts.googleapis.com/css?family=Ribeye+Marrow' rel='stylesheet' type='text/css'>
</head>
<body>
<h1>Tables — Attributes</h1>
<div class="content-wrapper">
<h2><td colspan='<i>n</i>'></h2>
<p>HTML:</p>
<pre>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
<td>row 1, cell 3</td>
<td>row 1, cell 4</td>
<td>row 1, cell 5</td>
</tr>
<tr>
<td colspan="2">row 2, cell 1 &amp; 2 (spans 2)</td>
<td>row 2, cell 3</td>
<td colspan="2">row 2, cell 4 &amp; 5 (spans 2)</td>
</tr>
<tr>
<td>row 3, cell 1</td>
<td colspan="4">row 3, cell 2, 3, 4, 5 (spans 4)</td>
</tr>
<tfoot>
<tr>
<td colspan="5">footer (spans 5)</td>
</tr>
</tfoot>
</table>
</pre>
<p>RESULT:</p>
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
<td>row 1, cell 3</td>
<td>row 1, cell 4</td>
<td>row 1, cell 5</td>
</tr>
<tr>
<td colspan="2">row 2, cell 1 & 2 (spans 2)</td>
<td>row 2, cell 3</td>
<td colspan="2">row 2, cell 4 & 5 (spans 2)</td>
</tr>
<tr>
<td>row 3, cell 1</td>
<td colspan="4">row 3, cell 2, 3, 4, 5 (spans 4)</td>
</tr>
<tfoot>
<tr>
<td colspan="5">footer (spans 5)</td>
</tr>
</tfoot>
</table>
</div>
</body>
</html>