Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Style borderLeftColor Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The borderLeftColor property allows us to set/get the color to left border of element. 

Syntax: 

  • It is used to return the borderLeftColor property. 
object.style.borderLeftColor
  • It is used to set the borderLeftColor property. 
object.style.borderLeftColor = "color|transparent|initial|
inherit"

Return Value:The borderLeftColor property returns the color of the left border of an element. 

Property Values:  

1. color: It specifies the border color of corresponding element. Black is default color. 

Syntax: 

borderLeftColor = "red"

Example: 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        #GFG_Div {
            width: 200px;
            margin-left: 210px;
            border: thick solid green;
        }
    </style>
</head>
<body align="center">
    <p>
     Click to change the left border
     color of element.
    </p>
 
    <button type="button" onclick="myGeeks()">
        Click to change
    </button>
    <br><br>
   
    <div id="GFG_Div">GeeksforGeeks</div>
    <script>
        function myGeeks() {
            document.getElementById("GFG_Div")
                .style.borderLeftColor = "red";
        }
    </script>
</body>
</html>


Output: 

  • Before Click on button 

  • After Click on Button 

Syntax: 

borderLeftColor = "yellow"

Example: 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        #GFG_Div {
            width: 200px;
            margin-left: 210px;
            border: thick solid green;
        }
    </style>
</head>
<body align="center">
    <p>
     Click to change the left border
     color of element.
    </p>
 
    <button type="button" onclick="myGeeks()">
        Click to change
    </button>
    <br><br>
   
    <div id="GFG_Div">GeeksforGeeks</div>
    <script>
        function myGeeks() {
            document.getElementById("GFG_Div")
                .style.borderLeftColor = "yellow";
        }
    </script>
</body>
</html>


Output: 

  • Before Click on button 

  • After Click on Button 

2. transparent: It sets the border color of corresponding element to transparent. 

Syntax: 

borderLeftColor = "transparent"

Example: 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        #GFG_Div {
            width: 200px;
            margin-left: 210px;
            border: thick solid green;
        }
    </style>
</head>
 
<body align="center">
    <p>
     Click to change the left border
     color of element.
    </p>
 
    <button type="button" onclick="myGeeks()">
        Click to change
    </button>
    <br><br>
   
    <div id="GFG_Div">GeeksforGeeks</div>
    <script>
        function myGeeks() {
            document.getElementById("GFG_Div")
                .style.borderLeftColor = "transparent";
        }
    </script>
</body>
</html>


Output: 

  • Before Click on button 

  • After Click on Button 

3. initial:When no value specified for this field, it is inherited from the parent of element. If there is no parent means this element is root then it takes initial(or default) value.

4. inherit:This keyword applies the initial(or default) value of a property to an element. The initial value should not be confused by the value specified by the browser’s style sheet. When borderColor sets to initial, It appears black(default) color.

Browser Support: The browser supported by DOM Style borderLeftColor property are listed below:  

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Mozilla firefox 1
  • Opera 3.5
  • Safari 1

My Personal Notes arrow_drop_up
Last Updated : 09 Sep, 2022
Like Article
Save Article
Similar Reads
Related Tutorials