set style javascript code example
Example 1: add style javascript
element.setAttribute("style", "background-color: red;");
element.style.backgroundColor = "red";
Example 2: how to change style of an element using javascript
<html>
<body>
<p id="p2">Hello World!</p>
<script>
document.getElementById("p2").style.color = "blue";
</script>
<p>The paragraph above was changed by a script.</p>
</body>
</html>
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";
Example 5: js style
const title = document.querySelector('h1')
console.log(title.style);
console.log(title.style.color);
title.style.margin = '50px';
title.style.color='crimson';
title.style.fontSize = '60px';
Example 6: javascript style
<element>.style.backgroundColor = '#000';
<element>.style.background = '#000';
<element>.style.color = '#fff';
<element>.style.boxSizing = 'border-box';
<element>.style.fontFamily = '\'Times New Roman\', Times, serif';
<element>.style.fontSize = '16px';
<element>.style.margin = 0;
<element>.style.padding = '20px';
<element>.style.width = '100%';
<element>.style.height = '100%';
<element>.style.marginLeft = 0;
<element>.style.fontWeight = 400;