Open In App

HTML | DOM HR color Property

The DOM HR color property is used to set or return the value of the color attribute of a <hr> element. 

Note: This property is not supported by HTML5



Syntax: 

hrobject.color
hrobject.color="value"

Property Values:



Return Value: It returns a string value which represents the color of the HR Element. 

Example 1: This example uses DOM HR color property to return the HR color attribute. 




<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM hr color property</title>
</head>
<body>
    <H1>GeeksForGeeks</H1>
    <h2>DOM HR color Property</h2>
    <p>
        There is a horizontal rule
        below this paragraph.
    </p>
    <!-- Assigning id to 'hr' tag. -->
    <hr id="GFG" align="left" width="140px" color="red">
    <p>
        This is a horizontal rule
        above this paragraph.
    </p>
    <button onclick="myGeeks()">Try it</button>
    <h3 id="sudo"></h3>
    <script>
        function myGeeks() {
             
            // return HR color property
            var x = document.getElementById("GFG").color;
            document.getElementById("sudo").innerHTML = x;
        }
    </script>
</body>
</html>

Output:

 

 

Example 2: This example uses DOM HR color property to set the HR color attribute. 




<!DOCTYPE html>
<html>
<head>
    <title>HTML DOM hr color property</title>
</head>
<body>
    <H1>GeeksForGeeks</H1>
    <h2>DOM HR color Property</h2
    <p>
        There is a horizontal rule
        below this paragraph.
    </p>
    <!-- Assigning id to 'hr' tag. -->
    <hr id="GFG" align="left" width="140px" color="red">
    <p>
        This is a horizontal rule
        above this paragraph.
    </p>
    <button onclick="myGeeks()">Try it</button>
    <h3 id="sudo"></h3>
    <script>
        function myGeeks() {
             
            // set HR color property
            var x = document.getElementById("GFG").color
                        = "blue";
             
            document.getElementById("sudo").innerHTML
                        = "The color was changed to " + x;
        }
    </script>
</body>
</html>

Output:

 

 


Article Tags :