Forum Moderators: not2easy

Message Too Old, No Replies

TextArea Scrollbar

Can I turn it off?

         

Pinnacor

5:15 pm on Sep 24, 2003 (gmt 0)

10+ Year Member



Is there anyway to turn off the scrollbar for <TextArea> in HTML?

coopster

5:43 pm on Sep 24, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



I read it somewhere else once...
CSS has the overflow property [w3.org]. I think this might work, but possibly only in MS IE:
<textarea id="ta1" style="overflow: hidden" name="ta1" rows="5" cols="40"></textarea>

Pinnacor

5:58 pm on Sep 24, 2003 (gmt 0)

10+ Year Member



<style>
TextArea {OverFlow:auto}
</style>

That worked perfectly!
Thanks