W3cubDocs

/DOM

CSSStyleDeclaration.getPropertyCSSValue

Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

The CSSStyleDeclaration.getPropertyCSSValue() method interface returns a CSSValue containing the CSS value for a property. Note that it returns null if the property name is a shorthand property.

You should use CSSStyleDeclaration.getPropertyValue() instead.

Syntax

var value = style.getPropertyCSSValue(property);

Parameters

  • property is a DOMString representing the property name to be retrieved.

Return value

  • value is a CSSValue containing the CSS value for a property. If none exists, returns null.

Example

The following JavaScript code gets an object containing the computed RGB values of the color CSS property:

var style = window.getComputedStyle(elem, null);
var rgbObj = style.getPropertyCSSValue('color').getRGBColorValue();

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support ? — 41
? — 41
See bug 331608.
No ? — 62
? — 62
Only returns a result if called on the result of getComputedStyle().
No 15 — 28
15 — 28
See bug 331608.
Yes
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support Yes ? — 41
? — 41
See bug 331608.
No ? — 62 15 — 28
15 — 28
See bug 331608.
Yes ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration/getPropertyCSSValue