-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-border.html
81 lines (58 loc) · 1.19 KB
/
css-border.html
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
<!DOCTYPE html>
<html>
<head>
<title>Css border</title>
</head>
<body>
<h1 style="
border-top-style:dotted;
border-left-style:solid;
border-bottom-style:groove;
border-right-style:dashed;
background-color: red;
color: green;
" >
Individual sides of border
</h1>
<h1 style="
border-top:5px solid green;
border-right:5px solid green;
background-color: red;
color: green;
" >
Individual sides of border top
</h1>
<h1 style="
border-bottom:5px solid green;
border-left:5px solid green;
background-color: red;
color: green;
" >
Individual sides of border bottom
</h1>
<h3 style="border-width: 5px;border-style: groove;border-color: pink">
Hello World
</h3>
<h3 style="border:2px solid red">
Hello World
</h3>
<div style="border:5px dotted red">
Helloooo
</div>
<div style="border:5px double red">
Helloooo
</div>
<div style="border:5px dashed red">
Helloooo
</div>
<div style="border:5px groove green">
Helloooo
</div>
<div style="border:5px inset red">
Helloooo
</div>
<div style="border:5px outset red">
Helloooo
</div>
</body>
</html>