JSFiddle - React, Tailwind, and code Playground

by Константин Дралюк

HTML

<textarea type="text" required pattern='\w{5,10}'></textarea>

CSS

textarea {
  width: 600px;
  height: 400px;
}
textarea:invalid {
  background: #f00;
}