简体   繁体   中英

How do you do a multi-line text area in primeng?

I think this should be a pretty quick question.

I have an html/primeng app in which I have an input of type text...

<span text-align="top">
  <input type="text" pInputText required maxlength="500" [(ngModel)]="mymodel"
        [style]="{width: '500px', height: '500px'}">
      
</span>

As you can see from the height: '500px' specification I would like for this to be a large text area into which the user can type in lots of text.

The height: '500px' specification does make the input area taller - but it still behaves like a single-line input, with the text smack in the center and with no wrapping...

Any suggestions? Thanks much.

在此处输入图像描述

You can use textarea instead of the input field Like this:

<textarea id="que1" name="Question" rows="4" cols="50">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM