-
Notifications
You must be signed in to change notification settings - Fork 0
/
border.html
56 lines (55 loc) · 1.31 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>border</title>
<style>
#zero{
border-style: dotted;
}
#one{
border-style: dashed;
}
#two{
border-style: solid;border-radius: 8px
}
#three{
border-style: double;border-width: thick;border-top-left-radius: 8px;border-bottom-right-radius: 8px
}
#four{
border-style: groove;border-width: 4px 5px /*top and bottom*/
}
#five{
border-style: ridge;border-width: 2px 4px 6px 8px/*top right ottom left*/
}
#six{
border-left : solid 7px red; background-color: lightgrey
}
#seven{
border-style: outset;
}
#eight{
border-style: none;
}
#nine{
border-style: hidden;
}
#ten{
border-style: dotted dashed solid double;
}
</style>
</head>
<body>
<p id="zero">THIS is a dotted border</p>
<p id="one">THIS is a dashed border</p>
<p id="two">THIS is a solid border</p>
<p id="three">THIS is a double border</p>
<p id="four">THIS is a groove border</p>
<p id="five"> THIS is a ridge border</p>
<p id="six">THIS is a soild border but using only left side</p>
<p id="seven">THIS is a outset border</p>
<p id="eight">THIS is a none border</p>
<p id="nine">THIS is a hidden border</p>
<p id="ten">THIS is a mixed border you can use different style in each sides.eg :top:dotted,right:dashed,bottom:solid,left:double</p>
</body>
</body>
</html>