<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<title>认识CSS3圆角属性</title>
<style type="text/css">
#radDiv1
{
background-color:#EEE;
width:200px;
height:300px;
padding:20px;
-moz-border-radius: 10px;/*火狐私有属性*/
-webkit-border-radius: 10px;/*webkit核心的浏览器可用*/
border-radius:10px;/*css3草案*/
}
</style>
</head>
<body>
<div id="radDiv1">
这是一个带有圆角的div
</div>
</body>
</html>
-moz-border-radius-topleft
/-webkit-border-top-left-radius
-moz-border-radius-topright
/-webkit-border-top-right-radius
-moz-border-radius-bottomleft
/-webkit-border-bottom-left-radius
-moz-border-radius-bottomright
/-webkit-border-bottom-right-radius