## border-radius 属性
## 定义和用法
border-radius 属性是一个简写属性,用于设置四个 border-\*-radius 属性。
提示:该属性允许您为元素添加圆角边框!
JavaScript 语法:object.style.borderRadius="5px"
## 语法
~~~
border-radius: 1-4 length|% / 1-4 length|%;
~~~
注释:按此顺序设置每个 radii 的四个值。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left 相同。
| 值 | 描述 | 测试 |
| --- | --- | --- |
| *length* | 定义圆角的形状。 | [测试](https://www.w3cschool.cn/statics/demosource/css-border-radius.html) |
| *%* | 以百分比定义圆角的形状。 | [测试](https://www.w3cschool.cn/statics/demosource/css-border-radius.html) |
### 例子 1
~~~
border-radius:2em;
~~~
等价于:
~~~
border-top-left-radius:2em;
border-top-right-radius:2em;
border-bottom-right-radius:2em;
border-bottom-left-radius:2em;
~~~
### 例子 2
~~~
border-radius: 2em 1em 4em / 0.5em 3em;
~~~
等价于:
~~~
border-top-left-radius: 2em 0.5em;
border-top-right-radius: 1em 3em;
border-bottom-right-radius: 4em 0.5em;
border-bottom-left-radius: 1em 3em;
~~~
## 实例--向 div 元素添加圆角边框:
~~~
div
{
border:2px solid;
border-radius:25px;
}
~~~
- 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 选择器