将圆角边框添加到两个 <div> 元素的左下角:
#example1 {
border: 2px solid red;
border-bottom-left-radius: 25px;
}
#example2 {
border: 2px solid red;
border-bottom-left-radius: 50px 20px;
}
亲自试一试 »
下面有更多 "亲自试一试" 示例。
这个border-bottom-left-radius
属性定义左下角的半径。
提示:此属性允许您为元素添加圆角边框!
表中的数字指定完全支持该属性的第一个浏览器版本。
后跟 -webkit- 或 -moz- 的数字指定使用前缀的第一个版本。
Property | |||||
---|---|---|---|---|---|
border-bottom-left-radius | 5.0 4.0 -webkit- |
9.0 | 4.0 3.0 -moz- |
5.0 3.1 -webkit- |
10.5 |
border-bottom-left-radius:
length|
% [
length|
%]|initial|inherit;
笔记:如果设置两个值,第一个值用于下边框,第二个值用于左边框。如果省略第二个值,则从第一个值复制。如果任一长度为零,则角为方形,而不是圆形。
Value | Description | Demo |
---|---|---|
length | Defines the shape of the bottom-left corner. Default value is 0. Read about length units | Demo |
% | Defines the shape of the bottom-left corner in % | Demo |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
以百分比形式向左下角添加圆角边框:
#example1 {
border: 2px solid red;
background: url(paper.gif);
padding: 10px;
border-bottom-left-radius: 40%;
}
亲自试一试 »
CSS教程:CSS 圆角
HTML DOM 参考:borderBottomLeftRadius 属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!