JSFiddle - React, Tailwind, and code Playground
HTML
<p class="resizable">
Este paragrafo Ă© redimensionado, por causa de propriedade CSS resize definida como 'both' neste elemento.
</p>
CSS
.resizable {
resize: both;
overflow: scroll;
border: 1px solid black;
background: linear-gradient(to right, #c0c, red);
}