Which method removes a specific CSS property from an element's style?
The style.removeProperty() method removes a specific CSS property from an element's style attribute. This is different from setting the property to an empty string or null, as it completely removes the property declaration. After removal, the element will inherit the property value from its CSS cascade. The method accepts the CSS property name in hyphenated format (e.g., 'background-color').