W3cubDocs

/DOM

CSSStyleDeclaration.getPropertyPriority

The CSSStyleDeclaration.getPropertyPriority() method interface returns a DOMString that provides all explicitly set priorities on the CSS property.

Syntax

var priority = style.getPropertyPriority(property);

Parameters

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

Return value

  • priority is a DOMString that represents the priority (e.g. "important") if one exists. If none exists, returns the empty string.

Example

The following JavaScript code checks whether margin is marked as important in a CSS selector rule:

var declaration = document.styleSheets[0].cssRules[0].style;
var isImportant = declaration.getPropertyPriority('margin') === 'important';

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support Yes Yes Yes Yes Yes Yes
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support Yes Yes Yes Yes Yes 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/getPropertyPriority