Is there a way to disable the scrollbars on a TextArea element? I managed to remove the horizontal scrollbar by using:
TextArea.setWrapText(true);
However, I am struggling to disable the vertical scrollbar - all I can do is hide it. My goal is to have a TextArea with 22 fixed rows that does not accept any further input. If possible to achieve this with CSS, advice would be greatly appreciated.