案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
text-align:center;
8
border:2px solid #a1a1a1;
9
padding:10px 40px; 
10
background:#dddddd;
11
width:350px;
12
border-radius:25px;
13
-moz-border-radius:25px; /* 老的 Firefox */
14
}
15
</style>
16
</head>
17
<body>
18
19
<div>border-radius 属性允许您向元素添加圆角。</div>
20
21
</body>
22
</html>
23