How can I control the visibility of the vertical scrollbar in a text area on IE when the content exceeds its height? Chrome only shows the scrollbar when needed, but IE seems to always display it. I've tried using -ms-overflow-style:auto and -ms-overflow-style:-ms-autohiding-scrollbar, but neither achieved the desired effect. The first one displays the scrollbar regardless of content height, while the second hides it only when the text area is not focused.
Any suggestions on how to achieve this?