目录

style borderLeftColor 属性

示例

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

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

描述

borderLeftColor 属性设置或返回元素左边框的颜色。


浏览器支持

Property
borderLeftColor Yes Yes Yes Yes Yes

语法

返回 borderLeftColor 属性:

object.style.borderLeftColor

设置 borderLeftColor 属性:

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

属性值

Value Description
color Specifies the color of the left 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 left 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.borderLeftColor);
亲自试一试 »

相关页面

CSS教程:CSS 边框

CSS 参考:左边框颜色属性

HTML DOM 参考:边境属性