Skip to main content Accessibility Feedback

Styles

Window.getComputedStyle()

Get the actual computed style of an element. This factors in browser default stylesheets as well as external styles you’ve specified.

let sandwich = document.querySelector('#sandwich');
let bgColor = window.getComputedStyle(sandwich).backgroundColor;

Preorder my new course on Web Components! Want to learn how to build Web Components from scratch, master best practices, and more? Preorder today and get $100 off of the launch price.


Find this useful? You can support my work by purchasing an annual membership.