-
Notifications
You must be signed in to change notification settings - Fork 0
/
html5BorderRadius.html
71 lines (68 loc) · 1.59 KB
/
html5BorderRadius.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div.content {
width: 200px;
margin: auto;
}
div.demo {
width: 100%;
height: 100px;
background-color: red;
margin-top: 20px;
}
div.div1 {
border-radius: 10px;
}
div.div2 {
border-radius: 10px 20px 30px 40px;
}
div.div3 {
border-radius: 10px 20px;
}
div.div4 {
border-radius: 10px 20px 30px;
}
div.div5 {
border-radius: 10px/20px;
}
div.div6 {
border-radius: 10px 20px 30px 40px/50px 60px 70px 80px;
}
div.div7 {
border-top-left-radius: 10px;
}
div.div8 {
border-top-right-radius: 10px;
}
div.div9 {
border-bottom-left-radius: 10px;
}
div.div10 {
border-bottom-right-radius: 10px;
}
div.div11 {
border-bottom-right-radius: 10px 20px;
}
</style>
</head>
<body>
<div class="content">
<h2>边框圆角</h2>
<div class="demo div1"></div>
<div class="demo div2"></div>
<div class="demo div3"></div>
<div class="demo div4"></div>
<div class="demo div5"></div>
<div class="demo div6"></div>
<div class="demo div7"></div>
<div class="demo div8"></div>
<div class="demo div9"></div>
<div class="demo div10"></div>
<div class="demo div11"></div>
</div>
</body>
</html>