JSFiddle - React, Tailwind, and code Playground

by inser

HTML

<div>
    <p id="test">This is the test</p>    
</div>

CSS

#test {
    color: red;
}

JavaScript

var el = document.getElementById("test");
alert(el.innerHTML);