Search code examples
javascriptcssfontsfont-size

How to change FontSize By JavaScript?


This code is not working

var span = document.getElementById("span");
span.style.fontsize = "25px";
span.innerHTML = "String";



Solution

  • JavaScript is case sensitive.

    So, if you want to change the font size, you have to go:

    span.style.fontSize = "25px";