Open In App

JavaScript Window getComputedStyle() Method

Last Updated : 11 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The getComputedStyle() method is used to get all the computed CSS property and values of the specified element. The use of computed style is displaying the element after stylings from multiple sources have been applied. The getComputedStyle() method returns a CSSStyleDeclaration object. 

Syntax:

window.getComputedStyle(element, pseudoElement)

Parameters:

  • element: The element to get the computed style for
  • pseudoElement: A pseudo-element to get. this is an optional parameter.

Example: Return font-family of text in div. 

html




<h1 id="test" style="color:green">
    GeeksforGeeks
</h1>
<button onclick="myFunction()">
    Try it
</button>
<p>
    The computed font-family of text
    in the test div is:
    <span id="demo"></span>
</p>
  
<script>
    function myFunction() {
      
        var elem = document.getElementById("test");
        var theCSSprop =
            window.getComputedStyle(
                elem, null).getPropertyValue("font-family");
        document.getElementById("demo").innerHTML =
                        theCSSprop;
    }
</script>


Output: 

JavaScript Window getComputedStyle() Method

JavaScript Window getComputedStyle() Method

Supported Browsers: The browser supported by Window getComputedStyle() Method are listed below:

  • Google Chrome 1.0
  • Edge 12.0
  • Internet Explorer 9.0
  • Firefox 1.0
  • Opera 7.2
  • Safari 3

We have a complete list of HTML and Window methods, to check those please refer to this HTML DOM Complete Reference article


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads