Change the color of the left border of a <div> element to red:
document.getElementById("myDiv").style.borderLeftColor = "red";
Try it Yourself »
The borderLeftColor property sets or returns the color of the left border of an element.
Property | |||||
---|---|---|---|---|---|
borderLeftColor | Yes | Yes | Yes | Yes | Yes |
Return the borderLeftColor property:
object.style.borderLeftColor
Set the borderLeftColor property:
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 |
Default Value: | current color |
---|---|
Return Value: | A String, representing the color of an element's left border |
CSS Version | CSS1 |
Return the left border color of a <div> element:
alert(document.getElementById("myDiv").style.borderLeftColor);
Try it Yourself »
CSS tutorial: CSS Border
CSS reference: border-left-color property
HTML DOM reference: border property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!