由于CSS3的标准化是分模块分阶段的,尽管目前的主流的标准浏览器对css3选择器的支持基本完全,但是对于css3的其他部分的支持不尽人意,毕竟还是个草案。
圆角属性就是其一
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<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;
<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>
-webkit-border-radius: 10px;/*webkit核心的浏览器可用*/
border-radius:10px;/*css3草案*/
}
</style>
</head>
<body>
<div id="radDiv1">
这是一个带有圆角的div
</div>
</body>
</html>
对于不支持圆角的浏览器可以使用方角处理或者使用hacks方法单独为其采用背景图片的方式。
当然了也可以单独对4个角单独圆角处理,比如指向让对角的2个圆角:
-
-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 本文转自 xcf007 51CTO博客,原文链接:http://blog.51cto.com/xcf007/137727,如需转载请自行联系原作者