source: sandbox/filemanager/tp/dompdf/www/test/border_test.html @ 1575

Revision 1575, 1.0 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implentação, melhorias do modulo 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>
6table {
7  border-spacing: 5px;
8  margin: 5em auto 5em auto;
9}
10td {
11  border-width: 5px;
12  padding: 1em;
13}
14
15td.dotted { border-style: dotted; color: maroon;}
16td.dashed { border-style: dashed; color: orange; }
17td.solid  { border-style: solid; color: yellow; }
18td.double { border-style: double; color: olive; }
19td.groove { border-style: groove; color: green; }
20td.ridge  { border-style: ridge; color: lime; }
21td.inset  { border-style: inset; color: teal; }
22td.outset { border-style: outset; color: blue; }
23</style>
24</head>
25
26<body>
27<table>
28  <tr>
29    <td class="dotted">dotted</td>
30    <td class="dashed">dashed</td>
31    <td class="solid">solid</td>
32    <td class="double">double</td>
33  </tr>
34  <tr>
35    <td class="groove">groove</td>
36    <td class="ridge">ridge</td>
37    <td class="inset">inset</td>
38    <td class="outset">outset</td>
39  </tr>
40</table>
41
42</body> </html>
Note: See TracBrowser for help on using the repository browser.