Home > Enterprise >  how to prevent textarea element from stretching past a certain height
how to prevent textarea element from stretching past a certain height

Time:03-13

There is information on the net about how to prevent the textarea element from being resized in width or height. But I can't find how to make it so that the element can be stretched, but only to a certain height. Or can't it be done?

CodePudding user response:

max-height and max-width CSS properties still work for resizable textarea

  • Related