JSFiddle - React, Tailwind, and code Playground
by jmpp77
HTML
<div class="main header container" id="d">
</div>
JavaScript
let d = document.getElementById('d');
d.classList.remove('header');
document.write(
d.className
)
by jmpp77
<div class="main header container" id="d">
</div>
let d = document.getElementById('d');
d.classList.remove('header');
document.write(
d.className
)