JSFiddle - React, Tailwind, and code Playground

by queryj

HTML

<div class="dim yanse bianxian">
    adslfj aoerjlasdf la jdflasdfas dfasdf
</div>
<br />
<input id="btn" type="button" value="click" />

CSS

.dim{
    width: 200px;
    height: 200px;
}

.yanse
{
  background-color: yellow;
}

.bianxian
{
    border: 1px solid red;
}
}

JavaScript

$(function(){
    $("#btn").click(function(){
        $("div").removeClass("yanse, bianxian");
    });

});