TEXTAREA Scroll Bar

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gsb

    TEXTAREA Scroll Bar

    Is there a way w/ CSS or JavaScript to stop the scrollbar from showing up in
    a TEXTAREA?
    IE6+ NN6+

    Thanks,

    gsb


  • Mike

    #2
    Re: TEXTAREA Scroll Bar

    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]


    Comment

    • gsb

      #3
      Re: TEXTAREA Scroll Bar

      Thanks. Just what I needed.

      gsb

      "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]


      Comment

      • @SM

        #4
        Re: TEXTAREA Scroll Bar



        gsb a ecrit :
        [color=blue]
        > Is there a way w/ CSS or JavaScript to stop the scrollbar from showing up in
        > a TEXTAREA?
        > IE6+ NN6+[/color]

        I hope that absolutly no !


        --
        *************** *************** *************** *************** **
        Stéphane MORIAUX : mailto:stephane OTER-MOImoriaux@wana doo.fr
        Aide aux Pages Perso (images & couleurs, formulaire, CHP, JS)

        *************** *************** *************** *************** **


        Comment

        • @SM

          #5
          Re: TEXTAREA Scroll Bar

          Mike a ecrit :
          [color=blue]
          > Use the "overflow" style attribute. Set it to "hidden"[/color]

          You may use overflow on a textarea ?



          Comment

          • JimMenees

            #6
            Re: TEXTAREA Scroll Bar

            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

            Working...