.removeStyle(...properties)
Available on: InDom, InDomArrayRemoves one or more CSS properties from the underlying element(s) inline style.Parameters:
...properties {string} - CSS property names (variadic) (camelCase or dash-case, e.g. `'background-color'` or even `'--bgc'`)
Returns: {InDom | InDomArray} - this for chainingThrows: Error - If the underlying element(s) has been removed
Examples:const div = $1('.example>div');
// remove a single CSS property
div.removeStyle('background-color');
// remove multiple at once
div.removeStyle('--bgc', '--fw', '--fh');
// remove from collection
$a('.example>div').removeStyle('color');Next: getStyle »