JSFiddle - React, Tailwind, and code Playground

by kodjoe mambi

HTML

<div id="post-7790">
<p >There's some text in this paragraph tag! The background is black and the text is white!</p>

</div>

JavaScript

$(document).ready(function(){
    $("h1").css("backgroundColor", "yellow");

    $("#myParagraph").css({
        "backgroundColor": "black",
        "color": "white"});

    $(".bordered").css("border", "1px solid black");
    });