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