Use the "overflow" style attribute. Set it to "hidden"
Mike
"gsb" <gsb@QWest.ne t> wrote in message
news:NrGBb.8$%N 3.14814@news.us west.net...[color=blue]
> Is there a way w/ CSS or JavaScript to stop the scrollbar from showing up[/color]
in[color=blue]
> a TEXTAREA?
> IE6+ NN6+
>
> Thanks,
>
> gsb
>
>[/color]
"Mike" <nospam@please. com> wrote in message
news:br7e25$iic $1@news1.wdf.sa p-ag.de...[color=blue]
> Use the "overflow" style attribute. Set it to "hidden"
>
> Mike
>
>
> "gsb" <gsb@QWest.ne t> wrote in message
> news:NrGBb.8$%N 3.14814@news.us west.net...[color=green]
> > Is there a way w/ CSS or JavaScript to stop the scrollbar from showing[/color][/color]
up[color=blue]
> in[color=green]
> > a TEXTAREA?
> > IE6+ NN6+
> >
> > Thanks,
> >
> > gsb
> >
> >[/color]
>
>[/color]
I've used a trick with css of setting all the scroll bar style attribute colors
to the page or layer background color.
eg: for a page with background-color:#FF0000; you might do this:
<style....
..textareaclass name {
scrollbar-arrow-color:#FF0000;
scrollbar-base-color: #FF0000;
scrollbar-dark-shadow-color: #FF0000;
scrollbar-track-color:#FF0000;
scrollbar-face-color:#FF0000;
scrollbar-shadow-color: #FF0000;
scrollbar-highlight-color: #FF0000;
scrollbar-3d-light-color:#FF0000;
}
/style>
Comment