JSFiddle - React, Tailwind, and code Playground

by Raphaël

HTML

<div id="header">Header</div>
<div id="page-header">Page header</div>
<div id="page">page</div>
<div id="footer">footer</div>

CSS

#page-header {
    /*color:#a1b0cf;*/
    color:#7eb6d0;
    padding:0px 0px 40px 100px;
    background: red 0px 50px no-repeat;
    width:100%;
}

JavaScript

$(document).ready(function () {
    $("#page-header").css(
        "background", "green 0px 50px no-repeat");
});