DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Remove Textarea Scrollbar In Internet Explorer
Most versions of Internet Explorer add a horridly disguisting scrollbar to all textarea elements. This isn’t the case with most any other browser. Luckily this short CSS clip fixes the issue.
textarea {
overflow: auto;
}





