文档分值:6

css >>> css >>> 属性

课程目录

选择器
指令
注释
样式
文字排版
颜色
长度
属性
布局模型
盒子模型
CSS动画
border-radius 属性

定义

border-radius属性为元素添加圆角边框,用于设置四个 border-*-radius 属性。

语法

border-radius:    1-4    length|%    /    1-4    length|%;

该写法为省略写法。

4个值依次的顺序为:top-left, top-right, bottom-right,bottom-left

实例

div
{
                border:2px    solid;
                border-radius:0    25px    0    25px;
}

[ 该条目创建时间:2016-07-09 21:03:07 ]