Style borderLeftColor attribute
- Pagina precedente borderLeft
- Pagina successiva borderLeftStyle
- Torna alla pagina precedente Oggetto Style HTML DOM
Definition and Usage
borderLeftColor
Sets or returns the color of the element's left border.
See also:
CSS Tutorial:Bordo CSS
CSS Reference Manual:border-left-color attribute
HTML DOM Reference Manual:border attribute
Example
Example 1
Change the left border color of the <div> element to red:
document.getElementById("myDiv").style.borderLeftColor = "red";
Example 2
Return the left border color of the <div> element:
alert(document.getElementById("myDiv").style.borderLeftColor);
Syntax
Return borderLeftColor attribute:
object.style.borderLeftColor
Set borderLeftColor attribute:
object.style.borderLeftColor = "color|transparent|initial|inherit"
Attribute 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 that represents the color of the element's left border. |
CSS version: | CSS1 |
Browser support
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
Supporto | Supporto | Supporto | Supporto | Supporto |
- Pagina precedente borderLeft
- Pagina successiva borderLeftStyle
- Torna alla pagina precedente Oggetto Style HTML DOM