How to remove Scrollbar from Textarea in IE

LIKE THIS POST? SHAR THIS POST
Share On MySpace !
By default all versions of IE have a scrollbar on textareas, even when they are empty.


No other browsers do this, so if you want to remove it so IE can visually match other browsers. Simply add this code in your CSS for Texareas:

<!-- Star -- >
textarea { overflow: auto; }
<!-- end -->



Tags: