w3schools dom style code example
Example 1: add style javascript
// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
Example 2: html style element
<!-- EXAMPLE -->
<div class="your_class" style="display:none">
<!--[SYNTAX: style="<your-styling>"] -->