xxxxxxxxxx
document.head.insertAdjacentHTML("beforeend", `<style>body{background:red}</style>`)
xxxxxxxxxx
// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
xxxxxxxxxx
let overlayDiv = document.createElement('DIV');
overlayDiv.style.backgroundColor = "red";
xxxxxxxxxx
element.style["name_of_css_property"]="property_value";
// example
my_text_input.style["text-transform"]="capitalize";
xxxxxxxxxx
element.style.backgroundColor = "red"; // set the background color of an element to red