border-radius属性
在CSS3中,只要使用border-radius属性指定好圆角的半径,就可以绘制圆角边框了。
使用Firefox浏览器的时候,需要在样式代码中将其书写成'-moz-border-radius'的形式,使用Opera浏览器的时候,需要书写成'border-radius'的形式,使用Chrome浏览器的时候,可以书写成'border-radius'或'-webkit-border-radius'的形式。
绘制一个圆角边框的示例
.wrap {
border: solid 5px blue;
border-radius: 20px;
-moz-border-radius:20px;
-o-border-radius: 20px;
-webkit-border-radius:20px;
background-color:skyblue;
padding:20px;
width:180px;
}
在示例中具有一个div元素,使用border-radius属性将其边框绘制为圆角边框,圆角半径为20像素,边框颜色为蓝色,div元素背景色为浅蓝色。