目录

CSS border-right 属性


示例

设置不同元素右边框的样式:

h1 {
  border-right: 5px solid red;
}

h2 {
  border-right: 4px dotted blue;
}

div {
  border-right: double;
}
亲自试一试 »

定义和用法

这个border-rightproperty 是以下属性的简写属性(按以下顺序):

如果省略 border-right-color,则应用的颜色将是文本的颜色。

展示演示❯

默认值: 中等 无颜色
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.borderRight="5px dotted blue"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
border-right 1.0 4.0 1.0 1.0 3.5


CSS 语法

border-right: border-width border-style border-color|initial|inherit;

属性值

Value Description Demo
border-right-width Required. Specifies the width of the right border. Default value is "medium" Demo ❯
border-right-style Required. Specifies the style of the right border. Default value is "none" Demo ❯
border-right-color Optional. Specifies the color of the right border. Default value is the color of the text Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 边框

HTML DOM 参考:borderRight 属性