JSFiddle - React, Tailwind, and code Playground
by IceCreamYou
HTML
<div id="container">
<textarea></textarea>
</div>
CSS
#container {
background-color: blue;
pointer-events: none;
}
#container:hover {
background-color: purple;
}
by IceCreamYou
<div id="container">
<textarea></textarea>
</div>
#container {
background-color: blue;
pointer-events: none;
}
#container:hover {
background-color: purple;
}