source: branches/2.2/filemanager/tp/dompdf/www/test/border_css_values.html @ 3019

Revision 3019, 649 bytes checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<style>
6.d { width: 1in; height: 1in; margin: 5pt; }
7
8.b1 {
9  border: 1px solid red;
10}
11
12.b2 {
13  border: solid thick blue;
14}
15
16.b3 {
17  border: #369 thin dashed;
18}
19
20.b4 {
21  border: dotted green 2px;
22}
23
24.b5 {
25  border: 0.1em #0033DD solid;
26}
27
28.b6 {
29  border: orange inset 4pt;
30}
31
32</head>
33<body>
34<div class="d b1"> </div>
35<div class="d b2"> </div>
36<div class="d b3"> </div>
37<div class="d b4"> </div>
38<div class="d b5"> </div>
39<div class="d b6"> </div>
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.