-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss_border_radius.html
51 lines (51 loc) · 1016 Bytes
/
css_border_radius.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>zhangqi_file</title>
<style>
html,body{
padding: 0;
margin: 0;
}
.main{
width: 600px;
padding: 10px;
border: 1px solid #00d5ff;
background: #ccc;
margin: 0 auto;
}
.box{
width: 200px;
height: 150px;
margin: 5px;
border: 20px solid #00d5ff;
float: left;
}
.a{
border-radius: 4px;
}
.b{
border-radius: 4px 6px 6px 4px;
}
.c{
border-radius: 5px 5px 3px 2px / 5px 5px 1px 3px;
/* 左上 右上 右下 左下(水平方向)/ 左上 右上 右下 左下(垂直方向) */
}
.clearfix{
clear: both;
}
</style>
</head>
<body>
<div class="main">
<div class="box a"></div>
<div class="box b"></div>
<div class="box c"></div>
<div class="clearfix"></div>
</div>
</body>
<script></script>
</html>