Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <meta http-equiv="content-type"
5 content="text/html; charset=ISO-8859-1">
6 <title>table border/css test</title>
7 <style type="text/css">
8 <!--
9 table {
10 border: 1px solid blue;
11 border-collapse: collapse;
12 }
14 th {
15 border: 1px outset silver;
16 }
18 td {
19 border: 1px outset silver;
20 }
21 -->
22 </style>
23 </head>
24 <body>
27 <table>
28 <tbody>
29 <tr>
30 <th>Table-header</th>
31 <th>Table-header</th>
32 <th>Table-header</th>
33 </tr>
34 <tr>
35 <td>Table-data</td>
36 <td>Table-data</td>
37 <td>Table-data</td>
38 </tr>
39 <tr>
40 <td>Table-data</td>
41 <td>Table-data</td>
42 <td>Table-data</td>
43 </tr>
44 </tbody>
45 </table>
46 </body>
47 </html>