CSS3 圆角(border-radius)圆角特效
操作方法
- 01
<div id="round"></div> #round {padding:10px; width:300px; height:50px;border: 5px solid #dedede;-moz-border-radius: 15px; /* Gecko browsers */-webkit-border-radius: 15px; /* Webkit browsers */border-radius:15px; /* W3C syntax */} 效果: 支持上、右、下、左 border-radius:5px 15px 20px 25px; 支持性 注:css3特效很绚丽,但是ie9以下的浏览器不支持哦,慎用。。。
赞 (0)