目录

style borderRightColor 属性

示例

将 <div> 元素右边框的颜色更改为红色:

document.getElementById("myDiv").style.borderRightColor = "red";
亲自试一试 »

描述

borderRightColor 属性设置或返回元素右边框的颜色。


浏览器支持

Property
borderRightColor Yes Yes Yes Yes Yes

语法

返回 borderRightColor 属性:

object.style.borderRightColor

设置 borderRightColor 属性:

object.style.borderRightColor = "color|transparent|initial|inherit"

属性值

Value Description
color Specifies the color of the right border. Look at CSS Color Values for a complete list of possible color values. Default color is the current color of the element
transparent The color of the right border is transparent (underlying content will shine through)
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 当前颜色
返回值: 一个字符串,表示元素右边框的颜色
CSS版本 CSS1

更多示例

示例

返回 <div> 元素的右边框颜色:

alert(document.getElementById("myDiv").style.borderRightColor);
亲自试一试 »

相关页面

CSS教程:CSS 边框

CSS 参考:右边框颜色属性

HTML DOM 参考:边境属性