How to set the textarea minimum height?

You can set it with CSS and min-height.

Example:

Set textarea minimum height to 200 pixels.

<textarea style="min-height: 200px;">hello</textarea>

Output: