JSFiddle - React, Tailwind, and code Playground

by lmatonement

HTML

<div id="thediv">
<canvas id="hey">
thecanvas
</canvas>

thediv
</div>

CSS

#hey {
  min-width: 5em;
  min-height: 7em;
  background-color: red;
}

#thediv {
  border: solid thin;
}

JavaScript

let canvas = document.getElementById("hey");
canvas.addEventListener("keydown", ()=>alert('canvas'));

let thediv = document.getElementById("thediv");
thediv.addEventListener("keydown", ()=>alert('thediv'));