html query

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • parims
    New Member
    • Nov 2007
    • 2

    html query

    hello friends,

    Is there a way to create textbox with multiline but without scroll bars.
  • numberwhun
    Recognized Expert Moderator Specialist
    • May 2007
    • 3467

    #2
    Originally posted by parims
    hello friends,

    Is there a way to create textbox with multiline but without scroll bars.
    Only if the number of lines the box contains does not exceed the number in the height of the box. (At least, that is my feeling)

    Regards,

    Jeff

    Comment

    • TurtleGuy910
      New Member
      • Aug 2007
      • 16

      #3
      Originally posted by numberwhun
      Only if the number of lines the box contains does not exceed the number in the height of the box. (At least, that is my feeling)

      Regards,

      Jeff
      Jeff is right. It depends on whether the number o line the box has is bigger then the height.

      Comment

      • phvfl
        Recognized Expert New Member
        • Aug 2007
        • 173

        #4
        Set the overflow style property to hidden:
        [CODE=html]
        <textarea class="noscroll " rows="6" cols="30"></textarea>
        [/CODE]
        [CODE=css]
        .noscroll{overf low:hidden;}
        [/CODE]

        Comment

        Working...