-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder.html
More file actions
56 lines (54 loc) · 925 Bytes
/
Copy pathborder.html
File metadata and controls
56 lines (54 loc) · 925 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
p{
color:#282828;
border-color:#009900;
}
p.one{
border-style: solid;
border-width:3px;
padding: 2px;
}
p.two{
border-style: solid;
border-width:medium;
padding:2px;
}
p.three{
border-style: dotted;
border-width: 2px;
padding: 2px;
}
p.four{
border-style: dotted;
border-width: thick;
padding:2px;
}
p.five{
border-style:double;
border-width: 15px;
padding:2px;
}
p.six{
border-style: double;
border-width: thick;
}
p.seven{
border-style:solid double solid double;
border-width:2px 10px 4px 20px;
}
</style>
</head>
<body>
<h2 style="color:#282828">Border</h2>
<p class="one">One</p>
<p class="two">Two</p>
<p class="three">Three</p>
<p class="four">Four</p>
<p class="five">Five</p>
<p class="six">Six</p>
<p class="seven">Seven</p>
</body>
</html>