summaryrefslogtreecommitdiff
path: root/Base/home/anon/www/borders.html
blob: a5b841d7dd1552a40a7a93e78692452f4406b22c (plain)
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
<!DOCTYPE html>
<html>
<head>
<title>CSS borders lookin' good</title>
<style>
#foo {
    border-top-color: red;
    border-right-color: lime;
    border-bottom-color: blue;
    border-left-color: yellow;

    border-top-width: 40px;
    border-right-width: 30px;
    border-bottom-width: 20px;
    border-left-width: 10px;

    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
}
#bar {
	border: 30px solid orange;
}
#bene {
	border: solid;
}
#salvete {
	border: 30px;
	border-color: grey;
	border-style: solid;
}
#amici {
	border: aquamarine;
	border-width: 30px;
	border-style: solid;
}
#resetting {
	border: 100px;
	border: orange;
	border: solid;
}
#three-px-solid-blue-separate {
	border-width: 3px;
	border-style: solid;
	border-color: blue;
}
#three-px-solid-blue {
	border: 3px solid blue;
}
#foo-but-actually-resetted {
    border-top-color: red;
    border-right-color: lime;
    border-bottom-color: blue;
    border-left-color: yellow;

    border-top-width: 40px;
    border-right-width: 30px;
    border-bottom-width: 20px;
    border-left-width: 10px;

    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;

    border: solid;
}
#double-width {
	border: 50px 100px solid red;
}
#double-style {
	border: 50px solid dotted red;
}
#double-color {
	border: 50px solid red blue;
}
#double-width-solo {
	border: 50px 100px;
}
#double-style-solo {
	border: solid dotted;
}
#double-color-solo {
	border: red blue;
}
</style>
</head>
<body>
<div id="foo">One day at a time!</div>
<div id="bar">Another day at another time!</div>
<div id="bene">bene</div>
<div id="salvete">salvete</div>
<div id="amici">amici</div>
<div id="resetting">resetting</div>
<div id="three-px-solid-blue-separate">three px solid blue separate</div>
<div id="three-px-solid-blue">three px solid blue</div>
<div id="foo-but-actually-resetted">foo but actually resetted</div>
<div id="double-width">double width</div>
<div id="double-style">double style</div>
<div id="double-color">double color</div>
<div id="double-width-solo">double width solo</div>
<div id="double-style-solo">double style solo</div>
<div id="double-color-solo">double color solo</div>
</body>
</html>