## border-bottom-right-radius 属性
border-bottom-right-radius 属性定义右下角边框的形状。
提示:该属性允许您向元素添加圆角边框。
JavaScript 语法:object.style.borderBottomRightRadius="5px"
## 语法
~~~
border-bottom-right-radius: length|% [length|%];
~~~
**注释:**border-bottom-right-radius 属性的长度值和百分比值定义四分之一椭圆(定义外部边框边缘的边角形状)的半径(radii)。第一个值是水平半径,第二个值是垂直半径。如果省略第二个值,则复制第一个值。如果长度为零,则边角为方形,而不是圆形。水平半径的百分比值参考边框盒的宽度,而垂直半径的百分比值参考边框盒的高度。
| 值 | 描述 | 测试 |
| --- | --- | --- |
| *length* | 定义右下角的形状。 | [测试](https://www.w3cschool.cn/tryrun/showhtml/css_border-bottom-right-radius) |
| *%* | 以百分比值定义右下角的形状。 | [测试](https://www.w3cschool.cn/tryrun/showhtml/css_border-bottom-right-radiuspercent) |
## 实例--向 div 元素的右下角添加圆角边框:
~~~
div
{
border:2px solid;
border-bottom-right-radius:2em;
}
~~~
- CSS常用样式控制
- background--背景
- Text--文本
- CSS属性
- align-*
- animation-*
- appearance
- backface-visibility
- background
- background-attachment
- background-blend-mode
- background-clip
- background-color
- background-image
- background-origin
- background-position
- background-repeat
- background-size
- border
- border-bottom
- border-bottom-color
- border-bottom-left-radius
- border-bottom-right-radius
- border-bottom-style
- border-bottom-width
- border-collapse
- border-color
- border-image
- border-image-outset
- border-image-repeat
- border-image-source
- border-image-width
- Border-left
- border-left-color
- border-left-style
- border-left-width
- border-image-slice
- border-radius
- border-right
- border-right-color
- border-right-style
- border-right-width
- border-spacing
- border-style
- border-top
- border-top-color
- border-top-left-radius
- border-top-right-radius
- border-top-style
- border-top-width
- border-width
- bottom
- box-shadow
- box-sizing
- caption-side
- clear
- clip
- color
- column-count
- column-gap
- column-rule
- column-rule-color
- column-rule-style
- column-rule-width
- column-span
- column-width
- columns
- content
- counter-increment
- counter-reset
- cursor
- direction
- display
- Empty-cells
- filter(滤镜)
- CSS 伪元素选择器
- :active 选择器
- :after 选择器
- :before 选择器
- :checked 选择器
- :disabled 选择器
- :empty 选择器
- :enabled 选择器
- :first-child 伪元素
- :first-letter 伪元素
- :first-line 伪元素
- :first-of-type 选择器
- :focus 选择器
- :hover 选择器