JSFiddle - React, Tailwind, and code Playground

by Timmy Willison

HTML

<div id="left"></div>
<div id="center"></div>
<div id="right"></div>
<button id="run">Set Center Color</button>

CSS

body
{
    background: black;
}

#left
{
background: gold; 
border: 1px solid #AAA; 
width: 80px; 
height: 80px; 
margin: 0 5px; 
float:left
}

#center
{
background: gold; 
border: 1px solid #AAA; 
width: 180px; 
height: 180px; 
margin: 0 5px; 
float:left
}

#right
{
background: gold; 
border: 1px solid #AAA; 
width: 80px; 
height: 80px; 
margin: 0 5px; 
float:left
}

.highlight 
{ 
background:orange !important; 
}

JavaScript

$("#run").click(function () {
    $("#center").toggleClass("highlight");
});