Click to See Complete Forum and Search --> : [RESOLVED] How to hide a textarea scrollbar
Grave_Digger
03-30-2006, 12:09 PM
Hi guys,
I need to "hide" the scrollbar of my textarea 'cause i wanna print it, how can i do that?
Tnx in advance
Robert Wellock
03-30-2006, 12:12 PM
<textarea rows="5" cols="60" style="overflow:hidden"
id="Lorem">"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain..."
</textarea>
Grave_Digger
03-30-2006, 12:44 PM
Tnx a lot ;)
pcthug
03-31-2006, 01:55 AM
<style type="text/css" media="print">
textarea {overflow:hidden}
</style>
Would be the correct method
KeepIt
03-11-2009, 04:36 PM
The specific IE overflow styles as well, so altogether:
overflow:hidden;
overflow-y: hidden;
overflow-x: hidden;
Enjoy.