JSFiddle - React, Tailwind, and code Playground

by aaronj1335

HTML

<div class=togglebuttons>
  <button type=button>option 1
  </button><button type=button>option 2
  </button><button type=button>option3
  </button>
</div>

CSS

.togglebuttons {
}

.togglebuttons button {
    border: 3px solid black;
}

.togglebutton button:hover {
    border-color: red;
}