Change the color of the four borders of a <div> element to red:
document.getElementById("myDiv").style.borderColor = "red";
Try it Yourself »
More "Try it Yourself" examples below.
The borderColor property sets or returns the color of an element's border.
This property can take from one to four values:
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
borderColor | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
Return the borderColor property:
object.style.borderColor
Set the borderColor property:
object.style.borderColor
= "color|transparent|initial|inherit"
Value | Description |
---|---|
color | Specifies the color of the 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 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 border |
CSS Version | CSS1 |
Change the color of the top and bottom border to green, and left and right border to purple, of a <div> element:
document.getElementById("myDiv").style.borderColor = "green purple";
Try it Yourself »
Return the border color of a <div> element:
alert(document.getElementById("myDiv").style.borderColor);
Try it Yourself »
CSS tutorial: CSS Border
CSS reference: border-color property
HTML DOM reference: border property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!