FrontendDeveloper.in

JavaScript question detail

How do you change the style of a HTML element

You can change inline style or classname of a HTML element using javascript DOM-manipulation

  1. Using style property: You can modify inline style using style property
document.getElementById("title").style.fontSize = "30px";
  1. Using ClassName property: It is easy to modify element class using className property
document.getElementById("title").className = "custom-title";
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399