Home > Mobile >  The H5 multiline text input
The H5 multiline text input

Time:11-29

Everybody is good, now run into a problem of H5 animation as follows,

It is painted in An horizontal line diagram, I would like to enter text in the horizontal,] [multiline text input, could you tell me how to do?

CodePudding user response:

HTML tags textarea in most browsers as long as the specified row (rows) and column (cols) attributes, can be the size of the textarea, but size in the browser (firefox, chrome) or can be adjusted, the bottom right hand corner there will be a drag on his sign,
Can through the following two ways to control size

Textarea style="height: 50 px; Width: 70 px; Resize: none;"
Textarea rows="3" cols="10" style="resize: none;"
  • Related