how to add style to html element using javascript code example
Example 1: add style javascript
element.setAttribute("style", "background-color: red;");
element.style.backgroundColor = "red";
Example 2: how to give css style in javascript
document.getElementById("myH1").style.color = "red";
Example 3: adding styling to element using javascript
var elem = document.querySelector('#some-element');
elem.style.color = 'purple';
elem.style.backgroundColor = '#e5e5e5';
elem.style.height = '150px';
Example 4: javascript style an element
var myElement = document.querySelector("#myElement");
myElement.style.color = "blue";
myElement.style.backgroundColor = "red";