JSFiddle - React, Tailwind, and code Playground

by NicoO

HTML

<button id="create-div">DIV ME!</button>

CSS

div
{
    background-color: lightgreen;
    height: 20px;
}

div:nth-of-type(2n)
{
    background-color: green;
}

JavaScript

document.getElementById("create-div").addEventListener("click", function(){
    var Text = "Hello fine sir!"
    var newDiv = document.createElement('div'); 
    newDiv.appendChild(document.createTextNode(Text));
    document.body.appendChild(newDiv);
}, false);