JSFiddle - React, Tailwind, and code Playground
by Oliver_kh
HTML
<textarea class="cl">Текст</textarea>
<p>
<a href="#">Ссылка</a>
CSS
textarea {
font-family: Arial;
font-size: 13px;
}
textarea: hover{
color: red;
}
.cl:hover {
color:red;
}
textarea: focus {
color: green;
}
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */