Open In App

HTML DOM Style borderBottom Property

The DOM style borderBottom property is used to set or return the three different border-bottom properties such as border-bottom-width, border-bottom-style, and border-bottom-color of an element. 

Syntax:



object.style.borderBottom
object.style.borderBottom = "width style color|initial|inherit"

Parameter:

Return Value: It returns a string value that represents the width, style, and/or color of the bottom border of an element. 



Example: In this example, we are using borderBottom property.




<!DOCTYPE html>
<html>
<head>
    <title>DOM Style borderBottom Property </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;width:50%;" id="sudo">
            GeeksForGeeks
        </h1>
        <h2>DOM Style borderBottom Property </h2>
        <br>
        <button type="button" onclick="geeks()">
            Submit
        </button>
        <script>
            function geeks() {
                document.getElementById("sudo").style.borderBottom
                    = "thick solid green";
            }
        </script>
    </center>
</body>
</html>

Output: 

 

Example 2: In this example, we are using borderBottom property.




<!DOCTYPE html>
<html>
<head>
    <title>DOM Style borderBottom Property</title>
</head>
<body>
    <center>
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
        <h2>DOM Style borderBottom Property </h2>
 
        <h3 style="border:2px solid red;
                   width:50%;" id="sudo">
              geeksforgeeks
          </h3>
        <br>
        <button type="button" onclick="geeks()">
            Submit
        </button>
 
        <script>
            function geeks() {
                document.getElementById("sudo").style.borderBottom
                    = "thick dotted green";
            }
        </script>
    </center>
</body>
</html>

Output: 

 

Supported Browsers: The browser supported by DOM Style borderBottom property are listed below:


Article Tags :