JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<div id="test" tabindex="-1">
    <textarea>Something</textarea>
</div>

CSS

div {
    border: 2px dashed #f90;
    width: 50%;
    margin: 0 auto;
}

div:focus,
div:active {
    border: 2px solid #f00;
    outline: none;
}

textarea {
    display: block;
    width: 80%;
    margin: 1em auto;
}