Style borderLeftColor Property
- Nakauna na Pahina borderLeft
- Susunod na Pahina borderLeftStyle
- Bumalik sa Angibanang Pahina HTML DOM Style Object
Definition and Usage
borderLeftColor
Sets or returns the color of the element's left border.
See Also:
CSS Tutorial:CSS Border
CSS Reference Manual:border-left-color Property
HTML DOM Reference Manual:border Property
Example
Example 1
Changes the left border color of the <div> element to red:
document.getElementById("myDiv").style.borderLeftColor = "red";
Example 2
Returns the left border color of the <div> element:
alert(document.getElementById("myDiv").style.borderLeftColor);
Syntax
Return borderLeftColor Property:
object.style.borderLeftColor
Set borderLeftColor Property:
object.style.borderLeftColor = "color|transparent|initial|inherit"
Property Value
Value | Description |
---|---|
color |
Specifies the color of the left border. The default is black. Please see CSS Color Values, for a complete list of possible color values. |
transparent | The left border color is transparent (the underlying content will show through). |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical Details
Default Value: | black |
---|---|
Return Value: | A string representing the color of the element's left border. |
CSS Version: | CSS1 |
Browser Support
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
Suporta | Suporta | Suporta | Suporta | Suporta |
- Nakauna na Pahina borderLeft
- Susunod na Pahina borderLeftStyle
- Bumalik sa Angibanang Pahina HTML DOM Style Object