## border-right 属性
### 属性定义及使用说明
border-right 简写属性把左边框的所有属性设置到一个声明中。
可以设置的属性是(按顺序):border-right-width, border-right-style, and border-right-color.
如果上述值缺少一个,没有关系,例如border-right:solid #ff0000; 是允许的。
JavaScript 语法:object object.style.borderRight="3px solid blue"
* * *
## 浏览器支持
![Internet Explorer](https://atts.w3cschool.cn/attachments/image/compatible_ie.gif "Internet Explorer")![Firefox](https://atts.w3cschool.cn/attachments/image/compatible_firefox.gif "Firefox")![Opera](https://atts.w3cschool.cn/attachments/image/compatible_opera.gif "Opera")![Google Chrome](https://atts.w3cschool.cn/attachments/image/compatible_chrome.gif "Google Chrome")![Safari](https://atts.w3cschool.cn/attachments/image/compatible_safari.gif "Safari")
所有主要浏览器都支持border-right属性。
**注意**IE7和更早的版本不支持"继承"的值。 IE8需要定义!DOCTYPE。 IE9支持"继承"。
* * *
## Property Values
| 值 | 说明 |
| :-- | :-- |
| *[border-right-width](https://www.w3cschool.cn/cssref/pr-border-right-width.html)* | 指定右边框的宽度 |
| *[border-right-style](https://www.w3cschool.cn/cssref/pr-border-right-style.html)* | 指定右边框的样式 |
| *[border-right-color](https://www.w3cschool.cn/cssref/pr-border-right-color.html)* | 指定右边框的颜色 |
| inherit | 指定了border-right属性的值,应该从父元素继承 |
* * *
## 实例 -- 设置右边框的样式:
```
<!DOCTYPE html>
<html>
<head>
<style>
p
{
border-style:solid;
border-right:thick double #ff0000;
}
</style>
</head>
<body>
<p>This is some text in a paragraph.</p>
</body>
</html>
```
- 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 选择器