Quick coding tips: Remove-the-scroll-bar-from-a-textarea-in-ie

To remove the scroll bar which IE automatically places in a textarea, you add the following to your CSS:


textarea { overflow:auto; }

This will remove the scroll bar from the textarea, put place it back in when the user enters more text than the area’s height (as with other browsers).