JSFiddle - React, Tailwind, and code Playground

by kayenglajom

HTML

<div class="col-sm-12" id="">
    <button type="submit" class="btn btn-warning" id="one">Button1</button>
    <button type="submit" class="btn btn-warning" id="two">Button2</button>
</div>

CSS

button#one:active
{
    background:olive;
}
button#two:focus
{
    background:olive;
}