JSFiddle - React, Tailwind, and code Playground

by TheCrossCarrier

HTML

<h1>Use Tab</h1>

<button class="btn_1">Button 1</button><br><br>
<button class="btn_2">Button 2</button>

CSS

button {
  width: 200px;
  height: 100px;
  border: none;
}

.btn_2:focus {
  outline: auto black;
  outline-offset: 10px;
}