forked from ArthurHub/HTML-Renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03.Tables.htm
More file actions
316 lines (314 loc) · 10.6 KB
/
03.Tables.htm
File metadata and controls
316 lines (314 loc) · 10.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<html>
<head>
<title>Tables</title>
<link rel="Stylesheet" href="StyleSheet" />
<style type="text/css">
table, tr, th {
border-style: solid;
border-style: outset;
}
td, th { border-style: inset; }
.caption { font-weight: bold; }
</style>
</head>
<body>
<h1>
Tables</h1>
<blockquote>
<ul>
<li>Table <i>captions</i> are not yet supported.</li>
<li><i>align</i> attribute of <i>TABLE</i> tag is not yet supported.</li>
</ul>
<h2>
Examples</h2>
<div class="caption">
Regular table:</div>
<table>
<tr>
<td>
Cell One
</td>
<td>
Cell Two
</td>
<td>
Cell Three
</td>
</tr>
<tr>
<td>
Cell Four
</td>
<td>
Cell Five
</td>
<td>
Cell Six
</td>
</tr>
<tr>
<td>
Cell Seven
</td>
<td>
Cell Eight
</td>
<td>
Cell Nine
</td>
</tr>
</table>
<br />
<div class="caption">
Table with complex text and width=100%
</div>
<table border="1" cellpadding="3" cellspacing="0" width="100%">
<tr>
<td>
<p>
You can use all the well known tags and CSS properties to format text, fonts and
colors.
</p>
<ul>
<li><span style="color: red">Colors</span>, <span style="color: #8dd">Colors</span>,
<span style="color: rgb(160, 80, 90)">Colors</span></li>
<li><span style="background-color: red">Back colors</span>, <span style="background-color: #8dd">
Back colors</span>, <span style="background-color: rgb(160, 80, 90)">Back colors</span></li>
<li><span style="font-style: normal">Font style</span>, <span style="font-style: italic">
Font style</span>, <span style="font-weight: bolder">Font style</span>, <span style="text-decoration: underline">
Font style</span>, <span style="text-decoration: line-through">Font style</span></li>
<li><span style="font-variant: normal">Font variant</span>, <span style="font-variant: small-caps">Font variant</span></li>
</ul>
</td>
<td valign="middle">
Cell Two
</td>
<td>
<ul>
<li>Item one</li>
<li>Item two
<ul>
<li>Sub item one</li>
<li>Sub item two</li>
</ul>
</li>
<li>Item three</li>
<li>Item four</li>
</ul>
</td>
</tr>
<tr>
<td valign="middle" style="text-align: center">
Cell Four
</td>
<td>
<div align="center" class="gray">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ornare mollis
elit. Integer sagittis. Fusce elementum commodo felis. Vivamus lacinia eleifend
libero. Donec lacus. Nam sit amet urna. Nullam nulla. Donec accumsan porta magna.
Mauris a dolor eu elit rutrum commodo. Nam iaculis turpis non augue.</div>
</td>
<td style="background-color: #8e9">
Cell Six
</td>
</tr>
</table>
<br />
<div class="caption">
Table with colspans:</div>
<table>
<tr>
<td colspan="2">
Cell One
</td>
<td>
Cell Two
</td>
</tr>
<tr>
<td>
Cell Four
</td>
<td>
Cell Five
</td>
<td>
Cell Six
</td>
</tr>
<tr>
<td>
Cell Seven
</td>
<td colspan="2">
Cell Eight
</td>
</tr>
</table>
<br />
<div class="caption">
Table with rowspans:</div>
<table>
<tr>
<td rowspan="2">
Cell One
</td>
<td>
Cell Two
</td>
<td>
Cell Three
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td>
Cell Seven
</td>
<td>
Cell Eight
</td>
</tr>
</table>
<p>
</p>
<div class="caption">
Mixed spans:</div>
<table>
<tr>
<td rowspan="2">
Cell One
</td>
<td colspan="2">
Cell Two
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td colspan="2">
Cell Seven
</td>
</tr>
</table>
<p>
</p>
<div class="caption">
Table on table:</div>
<table width="50%">
<tr>
<td rowspan="2">
Cell One
</td>
<td colspan="2">
Cell Two
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td colspan="2">
<table width="100%">
<tr>
<td rowspan="2">
Cell One
</td>
<td colspan="2">
Cell Two
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td colspan="2">
Cell Seven
</td>
</tr>
</table>
</td>
</tr>
</table>
<p>
</p>
<div class="caption">
Thick border and spacing:</div>
<table border="10" cellspacing="10">
<tr>
<td rowspan="2">
Cell One
</td>
<td colspan="2">
Cell Two
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td colspan="2">
Cell Seven
</td>
</tr>
</table>
<p>
</p>
<div align="center">
<table border="10" cellspacing="0">
<tr>
<td rowspan="2">
Cell One
</td>
<td colspan="2">
Cell Two
</td>
</tr>
<tr>
<td>
Cell Five
</td>
<td rowspan="2">
Cell Six
</td>
</tr>
<tr>
<td colspan="2">
Cell Seven
</td>
</tr>
</table>
</div>
<p>
</p>
</blockquote>
</body>
</html>