-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
77 lines (76 loc) · 1.44 KB
/
Index.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.6" />
<title> border radius</title>
<style type="text/css">
pre {
margin: 20px;
padding: 20px;
width: 80%;
height: 80px;
}
pre#example-1 {
border: solid 10px;
border-radius: 10px 40px 40px 10px;
}
pre#example-2 {
border: groove 1em red;
border-radius: 2em;
}
pre#example-3 {
background: gold;
border: ridge gold;
border-radius: 13em/3em;
}
pre#example-4 {
border: none;
border-radius: 40px 10px;
background: gold;
}
pre#example-5 {
border: none;
border-radius: 50%;
background: burlywood;
}
pre#example-6 {
border: dotted;
border-width: 10px 4px;
border-radius: 10px 40px;
}
pre#example-7 {
border: dashed;
border-width: 2px 4px;
border-radius: 40px;
}
</style>
</head>
<body>
<pre id="example-1">
border: solid 10px;
border-radius: 10px 40px 40px 10px;</pre>
<pre id="example-2">
border: groove 1em red;
border-radius: 2em;</pre>
<pre id="example-3">
background: gold;
border: ridge gold;
border-radius: 13em/3em;</pre>
<pre id="example-4">
border: none;
border-radius: 40px 10px;
background: gold;</pre>
<pre id="example-5">
border: none;
border-radius: 50%;
background: burlywood;</pre>
<pre id="example-6">
border: dotted;
border-width: 10px 4px;
border-radius: 10px 40px;</pre>
<pre id="example-7">
border: dashed;
border-width: 2px 4px;
border-radius: 40px;</pre>
</body>
</html>