style
property:ele.style.backgroundColor = 'red';ele.style['backgroundColor'] = 'red';ele.style['background-color'] = 'red';
cssText
property:// Add new styleel.style.cssText += 'background-color: red; color: white';// Ignore previous stylesel.style.cssText = 'background-color: red; color: white';
ele.style.removeProperty('background-color');// Does NOT workele.style.removeProperty('backgroundColor');