Posts Tagged ‘Remove Scrollbar from Textarea in IE’
Remove Scrollbar from Textarea in IE
1 Apr
Posted by admin as CSS Property,Internet Explorer,Random tips
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;
}
















Latest Comments