DEV Community

Zell Liew 🤗
Zell Liew 🤗

Posted on • Originally published at zellwk.com

How to get CSS values in JavaScript

CSS alone is not enough sometimes. You might need to control your CSS values with JavaScript. But how do you get CSS values in JavaScript?

Turns out, there are two possible ways, depending on whether you're trying to get inline styles or computed styles.

Getting inline styles

Inline styles are styles that are present in the HTML in the style attribute.

<div class="element" style="font-size: 2em; color: red;">Red hot chili pepper!</div>
Enter fullscreen mode Exit fullscreen mode

To get inline styles, you can use the style property.

const element = document.querySelector('.element');

const fontSize = element.style.fontSize;
console.log(fontSize); // 2em

const color = element.style.color;
console.log(color); // red
Enter fullscreen mode Exit fullscreen mode

Getting computed styles

If your styles are written in the CSS file, you need to get the computed style. To do so, you can use getComputedStyle.

It takes in two values:

const style = getComputedStyle(Element, pseudoElement);
Enter fullscreen mode Exit fullscreen mode

Element here refers to the element you've selected with querySelector.

pseudoElement here refers to the string of the pseudo element you're trying to get (if any). You can omit this value if you're not selecting a pseudo element.

Let's walk through an example to help make sense of things. Say you have the following HTML and CSS:

<div class="element"> This is my element </div>
Enter fullscreen mode Exit fullscreen mode
.element {
  background-color: red;
}
Enter fullscreen mode Exit fullscreen mode

First, you need to select the element with querySelector. Then, you use getComputedStyle to get the element's styles.

const element = document.querySelector('.element');
const style = getComputedStyle(element);
Enter fullscreen mode Exit fullscreen mode

If you log style, you should see an object that contains every CSS property and their respective values.

 raw `getComputedStyle` endraw  returns an object that contains every CSS property and their respective values


getComputedStyle returns an object that contains every CSS property and their respective values

You can also see this object in Chrome's and Firefox's dev tools.

For Firefox dev tools, look under "Inspector", "Computed".

Firefox dev tools computed tab


Firefox dev tools computed tab

For Chrome dev tools, look under "Elements". If the dev tools window is large, you can see the computed styles on the right panel. If the dev tools window is small, you can look under the "Computed" tab.

Chrome dev tools computed tab


Chrome dev tools computed tab

To get the value of a CSS property, you write the property in camel case.

const style = getComputedStyle(element);

const backgroundColor = style.backgroundColor;
console.log(backgroundColor); // rgb(0, 0, 0)
Enter fullscreen mode Exit fullscreen mode

Note: getComputedStyle is read-only. You cannot set a CSS value with getComputedStyle.

Note2: getComputedStyle gets the computed CSS values. You'll get px from getComputedStyle, not relative units like em and rem.

Getting styles from pseudo elements

To get styles from pseudo elements, you need to pass in a string of the pseudo element as the second argument to getComputedStyle.

<div class="element"> This is my element </div>
Enter fullscreen mode Exit fullscreen mode
.element {
  background-color: red;
}
.element::before {
  content: 'Before pseudo element';
}
Enter fullscreen mode Exit fullscreen mode
const element = document.querySelector('.element');
pseudoElementStyle = getComputedStyle(element, '::before');

console.log(pseudoElementStyle.content); // Before pseudo element
Enter fullscreen mode Exit fullscreen mode

Wrapping up

You can get CSS values in JavaScript through two methods:

  1. The style property
  2. getComputedStyle.

The style property only retrieves inlined CSS values while getComputedStyle style retrieves computed CSS values.

If this lesson has helped you, might enjoy Learn JavaScript, where you'll learn how to build anything you want from scratch. Enrollment for Learn JavaScript opens in July 2018 (next week!).


Thanks for reading. This article was originally posted on my blog. Sign up for my newsletter if you want more articles to help you become a better frontend developer.

Oldest comments (0)