Posts Tagged ‘Remove Scrollbar from Textarea in IE’

By default IE have a vertical scrollbar on textareas, even if the length of the page does not require a vertical scrollbar. To hide the vertical scrollbar when the scrollbar is disabled just add the following CSS code in your stylesheet.

textarea {
overflow: auto;
}