This code is not working
var span = document.getElementById("span"); span.style.fontsize = "25px"; span.innerHTML = "String";
JavaScript is case sensitive.
So, if you want to change the font size, you have to go:
span.style.fontSize = "25px";
2.1m questions
2.1m answers
60 comments
57.0k users