👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.

In HTML, how to set the maximum length of a textarea?

In HTML textareas, the attribute maxlength specifies the maximum number of characters allowed:

<textarea maxlength="30">30 characters maximum</textarea>

More