Updated!
How i can restrict content of text area if text input by user can go beyond height of textarea? SO user is restricted.
.left {
width: 200px;
height: 100px;
background-color: transparent;
resize: none;
outline: none;
/* border: none; */
overflow-y: hidden;
padding-top: 0;
padding-left: 0;
}
<textarea class="left"></textarea>