The CSSStyleDeclaration.setProperty()
method interface sets a new value for a property on a CSS style declaration object.
style.setProperty(propertyName, value, priority);
propertyName
is a DOMString
representing the CSS property name (hyphen case) to be modified.value
Optional is a DOMString
containing the new property value. If not specified, treated as the empty string. value
must not contain "!important"
-- that should be set using the priority
parameter.priority
Optional is a DOMString
allowing the "important" CSS priority to be set. If not specified, treated as the empty string. The following values are accepted: "important"
undefined
""
DOMException
(NoModificationAllowedError): if the property or declaration block is read only.JavaScript has a special simpler syntax for setting a CSS property on a style declaration object:
style.cssPropertyName = 'value';
The following JavaScript code sets a new value for the border-width
CSS property on a selector rule:
var declaration = document.styleSheets[0].rules[0].style; declaration.setProperty('border-width', '1px 2px'); // Equivalent to: // declaration.borderWidth = '1px 2px';
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/setProperty