-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborderradius.html
63 lines (63 loc) · 3.4 KB
/
borderradius.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
html {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFpSURBVHhe7durEcJAAEVRgsXRCPVCRziQUAI/BdhgKCDXZSYn+oqds2/idhjHcTWz7/z67LabmR1qdbje13M705zPAyvcDixYQSCklgUrCITUsmAFgZBaFqwgEFLLghUEQmpZsIJASC0LVhAIqWXBCgIhtSxYQSCklgUrCITUsmAFgZBaFqwgEFLLghUEQmpZsIJASC0LVhAIqWXBCgIhtSxYQSCklgUrCITUsmAFgZBaFqwgEFLLghUEQmpZsIJASC0LVhAI6XB6vkO+4PT4+A5esk4cgJesE6H+mR988IIFKwiE1LJgBYGQWhasIBBSy4IVBEJqWbCCQEgtC1YQCKllwQoCIbUsWEEgpJYFKwiE1LJgBYGQWhasIBBSy4IVBEJqWbCCQEgtC1YQCKllwQoCIbUsWEEgpJYFKwiE1LJgBYGQWhasIBBSy4IVBEJqWbCCQEgtC1YQCKllwQoCIR32l1vIl53+AI/JGTUBmZViAAAAAElFTkSuQmCC) repeat local;
}
.test {
width: 100px;
height: 100px;
background-color: cyan;
margin: 5px;
border: 1px solid black;
}
.group {
border: 3px solid black;
}
</style>
</head>
<body>
<div class="group">
<div class="test" style="border-radius: 20px;">border-radius: 20px;</div>
<div class="test" style="-webkit-border-radius: 20px;">-webkit-border-radius: 20px;</div>
<div class="test" style="-webkit-border-radius: 20px; border-radius: 20px;">-webkit-border-radius: 20px; border-radius: 20px;</div>
</div>
<div class="group">
<div class="test" style="border-radius: 10px 40px;">border-radius: 10px 40px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px;">-webkit-border-radius: 10px 40px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px; border-radius: 10px 40px;">-webkit-border-radius: 10px 40px; border-radius: 10px 40px;</div>
</div>
<div class="group">
<div class="test" style="border-radius: 10px 40px 20px;">border-radius: 10px 40px 20px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px 20px;">-webkit-border-radius: 10px 40px 20px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px 20px; border-radius: 10px 40px 20px;">-webkit-border-radius: 10px 40px 20px; border-radius: 10px 40px 20px;</div>
</div>
<div class="group">
<div class="test" style="border-radius: 10px 40px 20px 50px;">border-radius: 10px 40px 20px 50px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px 20px 50px;">-webkit-border-radius: 10px 40px 20px 50px;</div>
<div class="test" style="-webkit-border-radius: 10px 40px 20px 50px; border-radius: 10px 40px 20px 50px;">-webkit-border-radius: 10px 40px 20px 50px; border-radius: 10px 40px 20px 50px;</div>
</div>
<div class="group">
<div class="test" style="border-radius: 10px/30px;">border-radius: 10px/30px;</div>
<div class="test" style="-webkit-border-radius: 10px/30px;">-webkit-border-radius: 10px/30px;</div>
<div class="test" style="-webkit-border-radius: 10px/30px; border-radius: 10px/30px;">-webkit-border-radius: 10px/30px; border-radius: 10px/30px;</div>
</div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
<div class="test" style=""></div>
</body>
</html>