add css using js code example

Example 1: 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 2: how to give css style in javascript

document.getElementById("myH1").style.color = "red";

Example 3: add css in javascript

document.getElementById("demo").style.display = "none";

Example 4: add css style sheet with javascript

<head>

<script>
function myFunction() {
  var x = document.createElement("LINK");
  x.setAttribute("rel", "stylesheet");
  x.setAttribute("type", "text/css");
  x.setAttribute("href", "styles.css");
  document.head.appendChild(x);
}
myFunction()
</script>

</head>

Example 5: how to change css using javascript

document.getElementById("myText").className = "anyNewClass"

Tags:

Css Example