I've been searching for a solution to this question without any luck.
Here is the tag I'm working with:
<input type="text" id="userText" class="userTextBox">
And here is my CSS:
.userTextBox {
/* Add margin below the input element */
margin-bottom: 20px;
width: 500px;
height: 100px;
overflow-wrap: break-word;
}
Despite trying overflow-wrap, word-wrap, and word-break, none seem to work as expected.
I tested out different options but they are not yielding the desired result.