source: trunk/filemanager/tp/dompdf/www/test/table.html @ 2000

Revision 2000, 1.6 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
5<style>
6body { font-family: verdana;}
7table {
8  margin-top: 2em;
9}
10
11thead {
12  background-color: #eeeeee;
13}
14
15tbody {
16  background-color: #ffffee;
17}
18
19th,td {
20  padding: 3pt;
21}
22
23table.separate {
24  border-collapse: separate;
25  border-spacing: 5pt;
26  border: 3pt solid #33d;
27}
28
29table.separate td {
30  border: 2pt solid #33d;
31}
32
33table.collapse {
34  border-collapse: collapse;
35  border: 1pt solid black; 
36}
37
38table.collapse td {
39  border: 1pt solid black;
40}
41</style>
42
43</head>
44
45<body>
46
47<table class="separate"> 
48<thead>
49  <tr>
50    <th>head 1</th>
51    <th>head 2</th>
52    <th>head 3</th>
53    <th>head 4</th>
54  </tr>
55</thead>
56  <tr>
57    <td rowspan="2">cell 1</td>
58    <td>cell 2</td>
59    <td colspan="2">cell 3</td>
60  </tr>
61  <tr>
62    <td style="border: 4px double black" colspan="2">cell 4</td>
63    <td rowspan="2">cell 5</td>
64  </tr>
65  <tr>
66    <td colspan="3">cell 6</td>
67  </tr>
68  <tr>
69    <td colspan="4">cell 7</td>
70  </tr>
71</table>
72
73<table class="collapse"> 
74<thead>
75  <tr>
76    <th>head 1</th>
77    <th>head 2</th>
78    <th>head 3</th>
79    <th>head 4</th>
80  </tr>
81</thead>
82  <tbody>
83  <tr>
84    <td>cell 1</td>
85    <td>cell 2</td>
86    <td>cell 3</td>
87    <td>cell 4</td>
88  </tr>
89  <tr>
90    <td colspan="2">cell 5</td>
91    <td>cell 6</td>
92    <td>cell 7</td>
93  </tr>
94  <tr>
95    <td>cell 8</td>
96    <td>cell 9</td>
97    <td colspan="2">cell 10</td>
98  </tr>
99  </tbody>
100  <tr>
101    <td colspan="4">cell 11</td>
102  </tr>
103</table>
104
105
106</body> </html>
Note: See TracBrowser for help on using the repository browser.