JSFiddle - React, Tailwind, and code Playground
by Tan
HTML
<h1>Hello</h1>
CSS
h1.classs {color: red;}
JavaScript
var h1 = document.getElementsByTagName("h1");
console.debug(h1);
h1.className += ' classs';
by Tan
<h1>Hello</h1>
h1.classs {color: red;}
var h1 = document.getElementsByTagName("h1");
console.debug(h1);
h1.className += ' classs';