JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<div tabindex="0">123</div>

CSS

div {
  width: 200px;
  margin: 50px;
  height: 200px;
  background-color: #129382;
}

*:focus {
  outline: 3px solid #0781fd;
}

JavaScript

const div = document.querySelector('div')
div.addEventListener('click', (e) => {
  alert(e.target.dataset)
})