What is the equivalent of jQuery's $('*').css('font-size', '');
in JavaScript? I want to change font-size of every element on my website.
document.body.style.fontSize = "20px";
doesn't work good for me.
What is the equivalent of jQuery's $('*').css('font-size', '');
in JavaScript? I want to change font-size of every element on my website.
document.body.style.fontSize = "20px";
doesn't work good for me.