textarea and htmlarea behaviour

I need to provide my users an on-screen notes field where the text automatically wraps to the frame of the field.

Unless there are settings I’m not yet aware of, textarea doesn’t do this and
HTMLarea does. But HTMLarea fields do not respond to field font and size settings.

My preference is the simplicity of textarea. Is it possible to turn on textwrap on textarea fields? If not, then how does one set the fonts for htmlarea fields?

Thanks.

Set scrollbars to horizontal: ‘never’ and vertical: ‘when needed’.

Text will now flow as you expect.

thertzler:
Set scrollbars to horizontal: ‘never’ and vertical: ‘when needed’.

Text will now flow as you expect.

Yikes, thanks Thomas. So obvious. :oops: